java web 开发。在java程序中如何向某个文件中写数据,我的数据是JSONObject格式的。

2024-12-22 23:08:44
推荐回答(1个)
回答1:

public static void main(String [] arg) throws UnsupportedEncodingException, IOException
{
JSONObject a=JSONObject.fromObject("{a=9}");
FileOutputStream fos=new FileOutputStream("D:/1.txt");
fos.write(a.toString().getBytes("UTF-8"));
fos.flush();
fos.close();
}