读书人

资料读取为字符串字符串存储为文件

发布时间: 2012-08-26 16:48:06 作者: rapoo

文件读取为字符串,字符串存储为文件

将外部文件读取成为字符串

public void doTask(String strPage, String basePath, ProductDownload product) {synchronized (lock) {String text = strPage;String path = basePath;String filePath = path + File.separator + "product"+ product.getProductId() + File.separator + "product.html";FileOutputStream fos = null;try {fos = new FileOutputStream(filePath);BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos));bw.write(text);bw.flush();} catch (Exception e) {e.printStackTrace();} finally {if (fos != null) {try {fos.close();} catch (Exception e) {}}}}}

?

?

读书人网 >编程

热点推荐