라이브러리 애플릿 로드
// UTF-8
//
import java.io.BufferedWriter;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
public class AddNewWord {
public static OutputStreamWriter osw=null;
public static BufferedWriter bw=null;
public static String newWord;
public static String path;
public static ArrayList<String> list;
public void addNewWords(String newWord,String path)
{
try {
osw=new OutputStreamWriter(new FileOutputStream(path,true),"UTF-8");
bw=new BufferedWriter(osw);
//bw.newLine();
bw.append(newWord);
bw.newLine();
//System.out.println(" !");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(" ");
}
finally
{
if (bw!=null)
{
try {
bw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(" ");
}
}
}
}
public void addArraryWords(Collection<String> list,String path)
{
Iterator <String>it=list.iterator();
while (it.hasNext())
{
try {
osw=new OutputStreamWriter(new FileOutputStream(path,true),"UTF-8");
bw=new BufferedWriter(osw);
//bw.newLine();
bw.append(it.next().toString());
bw.newLine() ;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(" ");
}
finally
{
if (bw!=null)
try {
bw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(" ");
}
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.