码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA向EXE文件尾追加配置信息,用于解决局版客户端的程序IP配置问题

时间:2015-09-21 08:08:21      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

public class aaa {

    public static void main(String[] args) {
        File a = new File(Class.class.getClass().getResource("/").getPath()
                + "/notepad.exe");
        try 
        {
            String content = "10.10.6.6";
            FileWriter writer = new FileWriter(a.getAbsolutePath(), true);
            writer.write(content);
            writer.close();
            System.out.println("成功写入文件内容!");
        } catch (IOException e) 
        {
            e.printStackTrace();
        }
    }

}

 

JAVA向EXE文件尾追加配置信息,用于解决局版客户端的程序IP配置问题

标签:

原文地址:http://www.cnblogs.com/littlehb/p/4825133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!