Language - Java macOS NetBeans: Difference between revisions

From Phidgets Support
No edit summary
No edit summary
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{NoTitle}}
[[Category:Language]]{{NoTitle}}
{{Language_-_Java_Dev_Environment_Table}}
{|
{|
|style="vertical-align:middle; width: 60%;"|
|style="vertical-align:middle; width: 60%;"|
Line 16: Line 15:
#You will need a copy of [{{SERVER}}/downloads/phidget22/libraries/any/Phidget22Java.zip phidget22.jar]
#You will need a copy of [{{SERVER}}/downloads/phidget22/libraries/any/Phidget22Java.zip phidget22.jar]


==Use Our Examples==
{{Finding Code Samples|Java}}
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 [https://netbeans.org/ NetBeans].
 
 
Now that you have NetBeans installed, select an example that will work with your Phidget:
*{{SampleCode|Java|Java Examples}}
 
 
Next, open NetBeans and create a new project:
[[Image:Java_netbeans_mac_newproject.png|link=|center]]
 
 
Give your project a name and finish creating the project:
[[Image:Java_netbeans_mac_nameproject.png|link=|center]]
 
 
Delete the file that was generated with the project:
[[Image:Java_netbeans_mac_delete.png|link=|center]]
 
 
Replace the deleted file with the example you downloaded:
[[Image:Java_netbeans_mac_replace.png|link=|center]]
 
Next, add a reference to the phidget22.jar you downloaded above by right-clicking on the libraries folder:
[[Image:Java_netbeans_mac_addjar.png|link=|center]]
 
 
{{Edit_the_Examples}}
 
==Editing the Examples==
{{Language_-_Java_Editing_the_Examples}}
 
==Write Code==
{{Language_-_Java_Write_Code}}


==Setting up a New Project==
==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.
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 start, open NetBeans and create a new project:
To start, open NetBeans and create a new project. Select ''Java Application'' then click ''Next >'':
[[Image:Java_netbeans_mac_newproject.png|link=|center]]
[[Image:Java_netbeans_mac_newproject.png|link=|center]]


Line 66: Line 32:




Finally, to include the Phidget Java library, add the following import to your code:
The project now has access to Phidgets.
<syntaxhighlight lang="java">
import com.phidget22.*;
</syntaxhighlight>


{{Using the Code Samples|Java|MacOS|NetBeans}}


The project now has access to Phidgets.
{{Language Page What's Next}}
 
==Further Reading==
{{Language_-_Java_Further_Reading}}

Revision as of 22:14, 16 October 2019

Language - Java

MacOS with NetBeans

Welcome to using Phidgets with Java! By using Java, you will have access to the complete Phidget22 API, including events.

NetBeans is an IDE used to write, compile, and run Java applications.

Install Phidget Drivers for macOS

Before getting started with the guides below, ensure you have the following components installed on your machine:

  1. You will need the Phidgets macOS Drivers
  2. You will need the Java Development Kit from Oracle
  3. You will need a copy of phidget22.jar

Finding Code Samples

To find the code sample to use for your Phidget, navigate to the Code Samples page and select your device from the drop-down menu.

Java sample code.jpg


Once you select your device, the code sample generator will give you a working code sample, and a selection of options to customize it to your needs.

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 start, open NetBeans and create a new project. Select Java Application then click Next >:

Java netbeans mac newproject.png


Give your project a name and finish creating the project:

Java netbeans mac nameproject.png


Next, add a reference to the phidget22.jar you downloaded above by right-clicking on the libraries folder:

Java netbeans mac new project addjar.png


The project now has access to Phidgets.

Using the Code Samples

Now that you have configured a project to use Phidgets, you can copy the code sample from the Code Samples page into your project, and run it.


What's Next?

Now that you have set up Phidgets to work with your programming environment, we recommend you read our guide on Phidget Programming Basics to learn the fundamentals of programming with Phidgets.Next Arrow.png