Announcement

Collapse
No announcement yet.

Java problem?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Java problem?

    OK so I got interested in working with "junocam" images (shots of Jupiter) that half to be processed .

    I found a Java applet that will do the first part of assembling the RAW strip images into a set of GRB shots that then get layered on to one another but I cant get it to run.

    the person that made the .jar file said it works as expected on his linux manajro install but is getting the same error as me on a Ubuntu-18.04 VM

    the error is

    Code:
    vinny@vinny-bonox8:~/Downloads/IMG-proc$ java -jar JunoProcessor.jar 
    Error: Could not find or load main class junogui.Main
    Caused by: java.lang.NoClassDefFoundError: javafx/application/Application
    the openjfx is installed as well (and is a requirement) .

    any thoughts?

    VINNY
    i7 4core HT 8MB L3 2.9GHz
    16GB RAM
    Nvidia GTX 860M 4GB RAM 1152 cuda cores

    #2
    May be of help: https://stackoverflow.com/questions/...ain-class-mean
    Using Kubuntu Linux since March 23, 2007
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment


      #3
      I see openjfx and libopenjfx-java, are they both required?
      Which openjdk is recommended?

      Comment


        #4
        I got it
        In Ubuntu you have to specify some paths, as described in the third response here
        https://askubuntu.com/questions/1036...ith-openjdk-11


        Code:
        claydoh@claydoh-ideapad:~/Downloads$ java -jar --module-path /usr/share/openjfx/lib --add-modules=javafx.base,javafx.controls,javafx.fxml,javafx.graphics,javafx.media,javafx.swing,javafx.web  JunoProcessor.jar
        Click image for larger version

Name:	Screenshot_20190609_142833.png
Views:	1
Size:	43.9 KB
ID:	644207

        Comment


          #5
          Originally posted by claydoh View Post
          I got it
          In Ubuntu you have to specify some paths, as described in the third response here
          https://askubuntu.com/questions/1036...ith-openjdk-11

          Code:
          claydoh@claydoh-ideapad:~/Downloads$ java -jar --module-path /usr/share/openjfx/lib --add-modules=javafx.base,javafx.controls,javafx.fxml,javafx.graphics,javafx.media,javafx.swing,javafx.web  JunoProcessor.jar
          [ATTACH=CONFIG]8137[/ATTACH]
          thank you clay ,,,,,that did it

          VINNY
          i7 4core HT 8MB L3 2.9GHz
          16GB RAM
          Nvidia GTX 860M 4GB RAM 1152 cuda cores

          Comment


            #6
            Goes without say'n, but....

            Make yourself an alias so you don't have type out that LONG-G-G-G command.
            Using Kubuntu Linux since March 23, 2007
            "It is a capital mistake to theorize before one has data." - Sherlock Holmes

            Comment


              #7
              Originally posted by Snowhog View Post
              Goes without say'n, but...

              Make yourself an alias so you don't have type out that LONG-G-G-G command.
              lol yup ,

              VINNY
              i7 4core HT 8MB L3 2.9GHz
              16GB RAM
              Nvidia GTX 860M 4GB RAM 1152 cuda cores

              Comment


                #8
                first attempt



                VINNY
                i7 4core HT 8MB L3 2.9GHz
                16GB RAM
                Nvidia GTX 860M 4GB RAM 1152 cuda cores

                Comment

                Working...
                X