Can I run a Java based app on an IPAD2 like JMRI Decoder-Pro?

I have an IPAD2 64GB Wi-Fi+3G. Can I run a JAVA based application known as JMRI Decoder-Pro? It is a Model Railroad suite of control applications that are JAVA based which provide online Train and alyout control via IPHONEs, Droids, Macs etc.

Hi,
I don't have an iPad.
You have posted in the iChat Forum Community.
iChat does not run on an iPad.
(ergo: I know nothing).
Try posting here  (top level of iPad's area)
8:53 PM      Thursday; June 16, 2011
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb( 10.6.7)
 Mac OS X (10.6.7),
"Limit the Logs to the Bits above Binary Images."  No, Seriously

Similar Messages

  • How can I use an java based app that starts via an inf or bat file?

    I have java exe application that is started using a .bat file and a java exe application that is started using an inf file. Both the .bat and inf prevent the respective application from kicking off.  Is there a way to convert these file types so that they execute on  my MacBook?

    I didn't expect you to have your customer run the command. I would expect you to create the executable and install it. However, there wouldn't be any difference in what you are creating and the .jar file. Either way it is a faceless icon. For that matter, it is no different than a batch file on Windows. I'm not sure what they wouldn't understand with, "copy the Vocab.jar file to wherever you want and double-click it to run the program." In addition, you probably ought to point out that Java is not installed on Mac OS X Lion (10.7.x) and when they double-click the jar file (or whatever you send them), the system will ask if they want to install Java.
    What you really need to do is package up the app inside a Mac application package and provide the user with the application on a .dmg (disk image). Take a look here: http://developer.apple.com/library/mac/#documentation/Java/Conceptual/Jar_Bundle r/Introduction/Introduction.html#//apple_ref/doc/uid/TP40000884
    I also found this which uses ANT to create the bundle: http://informagen.com/JarBundler/

  • System freezes every time I use a Java based app

    Hi all,
    Very new to all this as I don't really know what to do, where to post or really how to ask about this.
    It started out that I wanted to try to use JAlbum, a program that creates photo albums to share on the web etc..... I upgraded the Java app on my WinXP Pro (service packs and updates in place) to the newest version of Java. I even uninstalled all previous versions of Java, rebooted a couple of times and installed the newer version (j2re-1_4_2_10-windows-i586-p.exe).
    I was instructed to install the JEdit free edit pad type app. The application went smoothly. When I exited the installer my system froze. When I rebooted and started up the .jar file all went well. I created a test file and saved it and then exited the program. System froze up. Started up JAlbum after rebooting, same thing. Program works right but then system freezes up and I have to do a hard reboot.
    I work with 3D stuff all the time (Poser, DAZ Studio) as well as in Photoshop CS so my system is kept up to date for this reason alone. My system is considered very stable my geek friends and so this is very strange as this has NOT ever happened to me in the years I've been using WinXP Pro!!
    Please let me know if there is anything you can suggest, besides reloading up Windows, that's not an option, that's the easy way out and with more thant a hundred programs on board that is not something I relish doing!
    Thanks very much
    System Specs:
    Win XP Pro Edition (SP 1+) - P IV/2.0 Ghz
    NVIDIA GeForce FX 5700LE - 250Mb's DDR RAM
    Sony ViewSonic G810 monitor - 20" viewable screen
    On board - 1 1/2 Gigs of DDR RAM
    1 internal - 1 external Western Digital Hard Drives
    1 internal Seagate Hard drive
    Richard :-)

    I was turned on to a thread here that seems to have some info.
    http://forum.java.sun.com/thread.jspa?threadID=661574
    I did update my Direct X that I'm embarrassed to admit was out of date. Still froze the system after the reboot trying to run a Java based app. So now I have tried the vaiable solution and set the nVidia video card options to Application Controlled and I'll see what happens.
    I'm going to reboot, again and then run JAlbum and keep my fingers crossed. If that doesn't work then how do I implement the last posters suggestion?? Through the Run dialog (copy/paste and hit OK?)
    Thanks much for your help!
    Richard ;-)~

  • How can i run a windows based program on mac book pro

    Can I run a windows based program on mac book pro mountain lion 10.8.4

    You can use bootcamp to install windows natively on the hard drive.  You then choose which OS you wish to use at startup - OS X or Windows.
    You can also install Windows in a virtual machine - Parallels or VMWare Fusion - and run it simultaneously with OS X (a virtual machine is just a PC emulated in software, and you install and run windows in the emulated machine hardware).

  • How can I run a java-application on starting of Windows 2000

    How can I run a java-application without any user on starting of Windows 2000?
    For example, if the computer is restarted and nobody enter into it yet, my java-application should run anyway.
    How can I do that?

    Hi, you have to put it in a Windows service.
    To do this you have a program, Srvany.exe that allow to insert a .exe or .bat program in a Windows service.
    For example, i develop a program, TomcatGuardian and i put it in a service because i need to run it in a server without Administrator logged in.
    Regards,
    Ivan.

  • Can we run a java application using Runtime.exec()?

    Can we run a java application using Runtime.exec()?
    If yes what should i use "java" or "javaw", and which way?
    r.exec("java","xyz.class");

    The best way to run the java application would be to dynamiically load it within the same JVM. Look thru the class "ClassLoader" and the "Class", "Method" etc...clases.
    The problem with exec is that it starts another JVM and moreover you dont have the interface where you can throw the Output directly.(indirectly it can be done by openong InputStreams bala blah............). I found this convenient. I am attaching part of my code for easy refernce.
    HIH
    ClassLoader cl = null;
    Class c = null;
    Class cArr[] ;
    Method md = null;
    Object mArr[];
    cl = ClassLoader.getSystemClassLoader();
    try{
         c = cl.loadClass(progName.substring(0,progName.indexOf(".class")) );
    } catch(ClassNotFoundException e) {
    System.out.println(e);
         cArr = new Class[1] ;
         try{
         cArr[0] = Class.forName("java.lang.Object");
         } catch(ClassNotFoundException e) {
         System.out.println(e);
         mArr = new Object[1];
         try{
         md = c.getMethod("processPkt", cArr);
         } catch(NoSuchMethodException e) {
         System.out.println(e);
         } catch(SecurityException e) {
         System.out.println(e);
    try {            
    processedPkt = md.invoke( null, mArr) ;
    } catch(IllegalAccessException e) {
              System.out.println(e);
    } catch(IllegalArgumentException e) {
              System.out.println(e);
    }catch(InvocationTargetException e) {
              System.out.println(e);
    }catch(NullPointerException e) {
              System.out.println(e);
    }catch(ExceptionInInitializerError e) {
              System.out.println(e);
    }

  • Can we run a java class in a external server through abap program?

    Dear Experts,
    Can we run a java class in an external server ( other than application server and client system )?
    I have tried running it in the client system through a program and it works.
    But i have the requirement of running it in another system. Can it be done?

    Hi,
    If this is the case I think you can call this web service from SAP and triger the execution of the application on the "external server".
    SAP is behaving as a client in this case.
    Another alternative:
    "have tried running it in the client system through a program and it works." please elaborate.
    Regards.

  • I am running Mac OS 10.6.7 I cannot run a java based program from the net when parental controls are set the error is The error is Load: class installer.CheckVersion 13. class not found  Help!

    I am running Mac OS 10.6.7 I cannot run a java based program from the net when parental controls are set the error is The error is Load: class installer.CheckVersion 13. class not found 

    Then, talk to the person running the lab.

  • How can i run my java program with out java language

    Hai to every one ..Iam new to java language ...am using windows xp operating system , i did not installed java language in my system .. how can i run a java program with out installing java language... Which files is requied to run java program..?
    any one can help me??

    Hai to every one ..Iam new to java language ...am
    using windows xp operating system , i did not
    installed java language in my system .. how can i run
    a java program with out installing java language...
    you ... can ... not ... do ... this
    Which files is requied to run java program..?
    any one can help me??a JVM. Download it from sun's website.
    [url http://java.sun.com/javase/downloads/index.jsp]Download JavaSE here

  • I bought over a Mac Book Pro from a friend. I can't update iPhoto and other apps as it seems like these are tagged to the previous owner's account. Pls advise.

    I bought over a Mac Book Pro from a friend. I can't update iPhoto and other apps as it seems like these are tagged to the previous owner's account. It basically requires me to sign in to my fren's account which is absurb! Because iphoto comes with mac isn't it?

    Contact your "friend." Have him set up the MBP for your with your own account, settings and passwords. You are not running IOS 5.1. That is for iPhone and iPad users. What OS are you running? Did he give you the OS installer disks?

  • HT1848 I synced my on my iPad 2 to my pc yesterday and now I can not open any of my apps on my iPad2, those purchased and those that are free.  All it does if I click on the app is flicker but does not open.  can anyone help?

    I was told I could sync my music on my pc with my ipad2 by an apple agent.  I hooked my ipad2 up to my pc and did so, but now I can not open any of my apps on my ipad2.  when I try it just flickers and does not open.  Can anyone help?

    On you iPad, force close all the Apps in the multitask window.
    Follow these steps to force an app to close:
    From the Home screen, click the Home button twice. 
    Tap and hold on the app. 
    When it starts to jiggle, tap the to close it on by one until all cleared
    Now do a Soft reset of your iPad:
    Hold both Home and Sleep button for around 10secs until you see the Apple logo then release. After it returns to Home screen, try your Apps again and see if this resolves the issue.

  • How can i run a java class file from shell?

    Hi all,
    I've a .class file named "File" that contains Main method, it is in the package "File2".
    How can I run it by shell command?
    PS: "java -cp . file" doesn't work it launch->
    Exception in thread "main" java.lang.NoClassDefFoundError: File2/File (wrong name: File2/File)
    Thanks in advance.

    Just to understand: is File2 ar jar archive or not? If it is a jar archive, have you tried open File2.jar? If File2 is a directory within the current directory, have you tried java -cp . File2/File? I just tested with a set of classes and it works... Let me be precise:
    * Let us imagine you are working in a directory whole path is PathToDir/
    * in this directory you have the classes put in a directory called File2
    * in order to launch File.class then you would have to invoke :
    cd PathToDir/ (just to be sure)
    java -cp . File2/File
    *if you were to do the following then you would have the problem you describe
    cd PathToDir/File2/
    java -cp . File

  • I can�t run my java 3d programs

    When i trying to run the Java 3D examples, i got the error Can�t find dependent libraries.
    I don�t know what is wrong? Can you help me please?

    You need to specify the correct paths to the 3d libraries on your classpath, or place then in your jre/lib/ext directory.
    I believe the jar files are
    j3dcore.jar
    j3dutils.jar
    j3daudio.jar
    vecmath.jar
    unless they've changed recently.

  • How can i run my java Application stand alone?

    Dear all,
    As the topic i want to run my application in a single file without showing the dos prompt or type in the command in dos prompt by the user......
    How can i do that, since in my application , i have used so other package?
    In fact i just want to do something like just run a executable file in windows.
    Thx

    Sounds like your JRE didn't install properly. Either reinstall it or you can enter the file association manually.
    On Windows NT (it may be different on other versions of Windows) take the View/Options menu item from an Explorer window
    Click on the File Types tab.
    Click the "New Type" button.
    Give it the name "Executable jar file" and an associated extension of jar
    Click the "New.." button
    Make the action open
    Make the application something like
    "C:\Program Files\Java\j2re1.4.0\bin\javaw.exe" -jar "%1"
    changing it for your installation.
    Col

  • Can i run find my iphone app on my windows laptop

    Can I run the find my phone app from my windows PC laptop?

    Yes as long as you have iCloud activated on your phone already, and the 'find my iPhone' option (under iCloud) enabled.  If so, just sign into www.icloud.com.  Find my iPhone is an option on there.

Maybe you are looking for

  • IPod No Longer Works In iHomes H5

    Since I updated to the latest version of iTunes, my iPod doesn't work in my iHomes H5. I've tried three H5s, and it doesn't work in any. However, my wife's nano works fine in our H5. Also, I've taken my iPod to two different electronics stores for di

  • Captivate 7 - HTML5 Output and Interactions - coming to the front

    Hi all, Don't know if anyone else has had this issue.  I have found that when using inetractions with HTML5 output they automatically come to the front of the slide regardless of where you placed them in the story file.  I had used white rectangles t

  • Must declare the scalar variable

    I Am getting error as Must declare the scalar variable "@Imageid" for the following code,while executing, exec spGetPager  ' ' , ' ', ' 3 ', ' ' In my coding I pass querystring value like 1,2,3 etc CREATE PROCEDURE spGetPager       @PageNo int = 1,  

  • Updating software for iPod

    I hope this isn't a dumb question... but here goes. I keep getting a message that a new software version (1.1) is available for my iPod. I click on the link, but it sends me to an iTunes screen for updates. So OK, I update my iTunes, thinking that mi

  • DATA STORE

    Dear All,         I have one query for sm04.I want to know that in sm04,we can see no. of users logged in sap..Now in which table dynamically it will store.when i generate any report i want to dispaly that no of users login. Regards shivam.