how we can modify window registry using java language .i am using java1.6 version...
how we can modify window regsitery using java language .i am using java1.6 version...
Collapse
X
-
Tags: None
-
-
-
JNI is a framework which allows your java program to utilize native apis which would basically be platform specific (like c, C++ programs) and it allows doing the reverse as well i.e accessing your java program thru say a C++ application.
Basically , the JNI will allow you to access apis which can modify the registry from your Java programs. which is a windows specific operation (i.e Native)Comment
-
can u send me few program for fatch,delete,up date registryJNI is a framework which allows your java program to utilize native apis which would basically be platform specific (like c, C++ programs) and it allows doing the reverse as well i.e accessing your java program thru say a C++ application.
Basically , the JNI will allow you to access apis which can modify the registry from your Java programs. which is a windows specific operation (i.e Native)Comment
Comment