Hey guys, I have developed a basic application in netbeans 8 using java 1.7 (On my mac). The built .jar file runs perfectly on my mac (only the .jar file is needed to execute it).
The system utilised is ARMv6 (Raspberry pi) and I am attempting to run the developed .jar file. I can run basic java GUI applications I wrote such as simply drawing rectangles etc but every time I run this new .jar file I get a huge error output:
http://pastebin.com/eSunCFmd
The system is running using openjdk-7 for archlinux, but I have also tried using the Java 7 ARM release (soft float) from the java website, as illustrated in a comment in my /etc/profile.d/jre.sh file below:
$this->bbcode_second_pass_code('', 'export JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-7-openjdk/jre}
# Other Java install DIR: /home/badger/builds/jdk1.7.0_60/jre
# Enable this for non-reparenting window managers:
#export _JAVA_AWT_WM_NONREPARENTING=1
export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swin$')
The application code for the java .jar file is:
http://pastebin.com/B2rm2GUb
I would really appreciate it if someone could help me out!