java 實現檔案複製和格式更改的執行個體

來源:互聯網
上載者:User

複製代碼 代碼如下:package com.chen.lucene.image;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class Change2Image
{
/**複製檔案
*
* @author chen_weixian
* Mar 11, 2012 11:33:19 PM
* @param path 需要複製檔案的路徑
* @param savePath 檔案儲存路徑(複製到的路徑)
* @throws Exception
*/
public void change2Image(String path, String savePath) throws Exception
{
File file = new File(path);
if (!file.exists())
{
System.out.println("檔案不存在!");
return ;
}
// 複製到的路徑如不存在就建立
File saveFile = new File(savePath);
if (!saveFile.exists())
{
saveFile.mkdirs();
}
// 新檔案全路徑
String savePathNew = "";
for (File fbean : file.listFiles())
{
if (fbean.isFile())
{
System.out.println(fbean.getName() + "\t" + fbean.getAbsolutePath());
// savePathNew = savePath + File.separator + fbean.getName()+ ".jpg";
// 把檔案名稱中含有.tbi格式的轉化為.jpg格式
savePathNew = savePath + File.separator + (fbean.getName().replaceAll(".tbi", ".jpg"));
// 開始複製
copy(fbean ,new File(savePathNew));
}
}
}

/**拷貝檔案
*
* @author chen_weixian
* Mar 11, 2012 11:31:59 PM
* @param fromFile
* @param toFile
* @throws Exception
*/
private static void copy(File fromFile, File toFile) throws Exception{
if (!fromFile.exists())
{
System.out.println("來源檔案為空白!");
}
if (!toFile.exists())
{
System.out.println("建立新檔案。。");
toFile.createNewFile();
}
FileInputStream fis = new FileInputStream(fromFile);
System.out.println("fromFile :" + fromFile.getAbsolutePath());
FileOutputStream fos = new FileOutputStream(toFile);
System.out.println("toFile :" + toFile.getAbsolutePath());

int len = 0;
byte[] buf = new byte[1024];
while((len = fis.read(buf)) != -1){
fos.write(buf,0,len);
}

fis.close();
fos.close();

}

/** 測試
* @author chen_weixian
* Mar 11, 2012 10:19:56 PM
* @param args
*/
public static void main(String[] args)
{
// String path = "E:/temp";
String path = "E:/temp/3月份資料包(1)/3月份資料包";
String savePath = "E:/temp/img";
Change2Image change2Image = new Change2Image();
try
{
change2Image.change2Image(path, savePath);
}
catch (Exception e)
{
e.printStackTrace();
}
System.out.println("完成");
}

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.