请任何人帮助我在运行时设置 java 版本路径。
我在不同的目录中安装了两个 java 版本。但是我需要使用 java 7 编译代码来使用 java6 版本执行应用程序。
我需要为 Firefox 浏览器设置 java 6 路径,有人可以帮我吗
提前致谢
我想使用java在属性文件中写入数据。我可以使用java在文件中写入数据,但默认情况下我每次都会收到日期和时间等注释。
请任何人建议如何使用java避免或删除properties文件中的注释
这是我的代码:
File file = new File("C:/Software/app.properties");
Properties properties = new Properties();
FileOutputStream fileOut = new FileOutputStream(file, true);
properties.setProperty(""+data.split(Constants.DATA_SPLIT)[1]+"", value);
properties.store(fileOut, null);
fileOut.close();
Run Code Online (Sandbox Code Playgroud)
我的 o/p 是 O/put 是:
#Wed Jun 04 13:23:54 IST 2014 CurrnerURL=J;SLDAJGLLASJGKPJ #Wed Jun 04 13:25:54 IST 2014 CurrnerURL=J;SLDAJGLLASJGKPJ
我不想在文件中评论会话。请建议我。