当前位置: 技术问答>java相关
Java难题,Java如何修改Windows注册表?
来源: 互联网 发布时间:2015-06-21
本文导语: 找了好多贴子,没找到答案,希望这次能有高手相助,小弟先谢啦! | Apparently, Sun will not provide such libraries, you could use Microsoft's WFC or 1. Windows Registry API Native Interface http://www.trust...
找了好多贴子,没找到答案,希望这次能有高手相助,小弟先谢啦!
|
Apparently, Sun will not provide such libraries, you could use Microsoft's WFC or
1. Windows Registry API Native Interface
http://www.trustice.com/java/jnireg/
2. Java Interface to Windows Registry
http://www.algorekiss.com/wsnE682.html
3. Neva Object
http://www.nevaobject.com/products.htm
1. Windows Registry API Native Interface
http://www.trustice.com/java/jnireg/
2. Java Interface to Windows Registry
http://www.algorekiss.com/wsnE682.html
3. Neva Object
http://www.nevaobject.com/products.htm
|
jdk 1.4提供了修改注册表的方法
参看java.util.prefs
文档
http://www.csdn.net/Develop/Read_Article.asp?Id=13885
参看java.util.prefs
文档
http://www.csdn.net/Develop/Read_Article.asp?Id=13885
|
JNI(Java Native Interface) is the unique & best solution for access platform specified resources.
Please check the SUN online tutorial for more JNI.
http://java.sun.com/docs/books/tutorial/native1.1/TOC.html
Wish you have the knowledge of C/C++ Windows programming.
Good Luck!
Please check the SUN online tutorial for more JNI.
http://java.sun.com/docs/books/tutorial/native1.1/TOC.html
Wish you have the knowledge of C/C++ Windows programming.
Good Luck!
|
肯定只能通过JNI来访问了。这是和平台相关的问题,只有JNI才能解决问题。
|
这和你用什么样的开发工具无关,它是一种技术,只能靠你用代码实现。
你可以查看JavaDoc中关于JNI的一些文章你就知道了。
具体就是你用Java写出方法框架,然后用本地语言写出dll(VC,Delphi都可以了),它通过命名规则来实现自动调用。
你可以查看JavaDoc中关于JNI的一些文章你就知道了。
具体就是你用Java写出方法框架,然后用本地语言写出dll(VC,Delphi都可以了),它通过命名规则来实现自动调用。