Language - Java Linux Javac: Difference between revisions

From Phidgets Support
(Created page with "{{NoTitle}} {{Language_-_Java_Dev_Environment_Table}} {| |style="vertical-align:middle; width: 60%;"| <font size=6>'''Language - Java''' '''Linux with javac'''</font> Welcom...")
 
(Redirected page to Language - Java)
 
(16 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{NoTitle}}
#REDIRECT [[Language - Java]]
{{Language_-_Java_Dev_Environment_Table}}
{|
|style="vertical-align:middle; width: 60%;"|
<font size=6>'''Language - Java'''
 
'''Linux with javac'''</font>
 
Welcome to using Phidgets with Java! By using Java, you will have access to the complete Phidget22 API, including events.
 
Javac is a command line-based compiler for java programs that compiles java code into bytecode class files.
|{{TOC limit|2}}
|}
 
{{Language_-_Java_Intro|Linux|javac}}
 
==Use Our Examples==
One of the best ways to start programming with Phidgets is to use our example code as a guide. In order to run the examples, you will need to download and install the JDK. You can do this by entering the following command in the terminal (where VERSION is replaced with your preferred version number):
<syntaxhighlight lang='bash'>
apt-get install openjdk-VERSION-jdk
</syntaxhighlight>
 
Before continuing, ensure your JDK version matches your JRE version:
<syntaxhighlight lang='bash'>
javac -version
java -version
</syntaxhighlight>
 
 
You will also need a copy of [{{SERVER}}/downloads/phidget22/libraries/any/Phidget22Java.zip phidget22.jar].
 
 
Now that you have the JDK installed and phidget22.jar on hand, select an example that will work with your Phidget:
*{{SampleCode|Java|Java Examples}}
 
 
Your project folder should now look something like this:
[[Image:Java_javac_linux_folder.PNG|link=|center]]
 
 
Next, open the terminal at the folder location and enter the following command:
<syntaxhighlight lang='bash'>
javac -classpath .:phidget22.jar example.java
</syntaxhighlight>
 
Finally, enter the following command to run the program:
<syntaxhighlight lang='bash'>
java -classpath .:phidget22.jar example
</syntaxhighlight>
 
 
[[Image:Java_javac_linux_run.PNG|link=|center]]
 
 
{{Edit_the_Examples}}
 
==Editing the Examples==
{{Language_-_Java_Write_Code}}
 
 
==Write Code==
{{Language_-_Java_Write_Code}}
 
==Setting up a New Project==
When you are building a project from scratch, or adding Phidget functionality to an existing project, you'll need to configure your development environment to properly link the Phidget Java library.
 
 
To include the Phidget Java library, add the following line to your code:
<syntaxhighlight lang="java">
import com.phidget22.*
</syntaxhighlight>
 
You can now compile the file as shown in the [[#Use Our Examples|Use Our Examples]] section.
 
The project now has access to Phidgets.
 
==Further Reading==
{{Language_-_Java_Further_Reading}}

Latest revision as of 16:39, 15 March 2021

Redirect to: