문자열을 파일로 저장하고 싶을 때 사용하면 됩니다.
public void save(String $file_name, String $value){
try{
InputStream in = new ByteArrayInputStream($value.toString().getBytes("UTF-8"));
FileOutputStream fos = new FileOutputStream($file_name);
BufferedInputStream bis = new BufferedInputStream(in);
BufferedOutputStream bos = new BufferedOutputStream(fos);
int len=0;
byte[]buf = new byte[1024];
while((len=bis.read(buf,0,1024))!=-1){
bos.write(buf,0,len);
}
//close
bos.close();
bis.close();
fos.close();
in.close();
}catch (Exception e) {
e.printStackTrace();
}
}
'etc > old' 카테고리의 다른 글
[HTML] JQUERY parsing (0) | 2010.06.30 |
---|---|
[HTML] JQuery parseerror in xml or json (0) | 2010.06.28 |
[Java] 연속되는 이미지 다운로드 받기 (0) | 2010.06.28 |
[Flex] flex3 comboBox bug 콤보박스 버그 (0) | 2010.06.24 |
[ FLEX ] 줄바꿈 문자 => (0) | 2010.06.16 |