Thread: is it possible?

Results 1 to 8 of 8
  1. #1 is it possible? 
    Registered Member Hexagon's Avatar
    Join Date
    May 2008
    Posts
    672
    Thanks given
    28
    Thanks received
    18
    Rep Power
    33
    is it possible run a public void from a .bat file or make it a .jar and sign jar to open void?
    Reply With Quote  
     

  2. #2  
    Member is it possible? Market Banned


    Luke132's Avatar
    Join Date
    Dec 2007
    Age
    35
    Posts
    12,574
    Thanks given
    199
    Thanks received
    7,106
    Rep Power
    5000
    no, neither of your questions are possible.
    Reply With Quote  
     

  3. #3  
    Registered Member Hexagon's Avatar
    Join Date
    May 2008
    Posts
    672
    Thanks given
    28
    Thanks received
    18
    Rep Power
    33
    Quote Originally Posted by Luke132 View Post
    no, neither of your questions are possible.
    Thanks for answer, is there anyway to make it possible? like a GUI? because my void basically only grabs data from rs ge and saves on a file
    Reply With Quote  
     

  4. #4  
    Member is it possible? Market Banned


    Luke132's Avatar
    Join Date
    Dec 2007
    Age
    35
    Posts
    12,574
    Thanks given
    199
    Thanks received
    7,106
    Rep Power
    5000
    Just run it in a single class..?
    Reply With Quote  
     

  5. #5  
    is it possible?



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,306
    Thanks given
    7,215
    Thanks received
    12,306
    Rep Power
    5000
    Quote Originally Posted by sn4k3d View Post
    Thanks for answer, is there anyway to make it possible? like a GUI? because my void basically only grabs data from rs ge and saves on a file
    make the main method reference the method you are talking about

    Attached image
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    May 2008
    Posts
    823
    Thanks given
    16
    Thanks received
    31
    Rep Power
    0
    Code:
    class Main {
    
            public static void main(String[] args) 
            {
                    executeMethod();
            }
            
            static void executeMethod()
            {
                    // Put your method for dumping in here
    
            } 
    }
    Compile it with this:
    Code:
    javac Main
    and use this batch file to run it:

    Code:
    java Main
    Reply With Quote  
     

  7. #7  
    Registered Member Hexagon's Avatar
    Join Date
    May 2008
    Posts
    672
    Thanks given
    28
    Thanks received
    18
    Rep Power
    33
    Quote Originally Posted by Xenocide View Post
    Code:
    class Main {
    
            public static void main(String[] args) 
            {
                    executeMethod();
            }
            
            static void executeMethod()
            {
                    // Put your method for dumping in here
    
            } 
    }
    Compile it with this:
    Code:
    javac Main
    and use this batch file to run it:

    Code:
    java Main
    Worked perfectly, cheers...
    Reply With Quote  
     

  8. #8  
    Registered Member Hexagon's Avatar
    Join Date
    May 2008
    Posts
    672
    Thanks given
    28
    Thanks received
    18
    Rep Power
    33
    Quote Originally Posted by Luke132 View Post
    Just run it in a single class..?
    and i am running on a single class i just need server to call the method
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •