how we can modify window regsitery using java language .i am using java1.6 version...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sanchit007
    New Member
    • Feb 2010
    • 8

    how we can modify window regsitery using java language .i am using java1.6 version...

    how we can modify window registry using java language .i am using java1.6 version...
  • grayMist
    New Member
    • Feb 2010
    • 12

    #2
    You can use JNI to access the windows registry from Java.
    I think there's a java package called 'JNIRegistry' which is designed to
    do just that. You may as well check that out.

    Comment

    • sanchit007
      New Member
      • Feb 2010
      • 8

      #3
      what is JNI it is a another software for modify registry ..............

      Comment

      • sanchit007
        New Member
        • Feb 2010
        • 8

        #4
        Originally posted by grayMist
        You can use JNI to access the windows registry from Java.
        I think there's a java package called 'JNIRegistry' which is designed to
        do just that. You may as well check that out.
        grayMist hello can i know r id my id is sanchitjindal00 7@gmail.com join it

        Comment

        • grayMist
          New Member
          • Feb 2010
          • 12

          #5
          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

          • sanchit007
            New Member
            • Feb 2010
            • 8

            #6
            Originally posted by grayMist
            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)
            can u send me few program for fatch,delete,up date registry

            Comment

            • jkmyoung
              Recognized Expert Top Contributor
              • Mar 2006
              • 2057

              #7
              jRegistryKey in SourceForge is another possible api.
              Download jRegistryKey for free. A simple yet robust API for accessing the Windows registry from Java

              Comment

              Working...