に変換したいのですtext file
がxml file
、大量の文字列がありますが、xmlに直接書きたくありません。
テキストファイルを作成したので、これを変換したい
テキストファイルをxml形式に変換しましたが、このファイルを実行しても出力が得られません。これが私の
コード:
public void convert() throws Exception {
String text[]=new String[10];
FileOutputStream fout = new FileOutputStream("res/values/mysml.xml");
OutputStreamWriter out = new OutputStreamWriter(fout);
InputStream in= getAssets().open("myText.txt");
Scanner scn = new Scanner(is);
for(int i=0;i<10;i++)
text[i]=bin.readLine();
out.write("<?xml version=\"1.0\"?>\r\n");
out.write("<resources>\r\n");
for (int i = 0; i < 10; i++){
out.write("<item>"+text[i]+"</item>");
}
out.write("</resources>");
out.flush();
out.close();
}