Blog Archives for category Java
Get android device information
Get the android UUID, Model and ID information.
1 2 3 4 5 6 7 8 |
import android.provider.Settings.Secure; import android.os.Build; import android.os.Bundle; String device_uuid = Secure.getString(this.getContentResolver(),Secure.ANDROID_ID); System.out.println(device_uuid); System.out.println(Build.MODEL); System.out.println(Build.ID); |
If you want to get your UUID, model or ID information… Continue reading »
Java webcam motion detector
On the internet is a lot of information about using a webcam in JAVA. Unfortunately almost all these information is… Continue reading »
Snapshot with a USB webcam in Java 7
On the internet is a lot of information about using a webcam in JAVA.Unfortunately almost all these information is old… Continue reading »
JAVA_HOME environment variable
To use the JAVA_HOME environment variable you first need to download and install the Java Platform (JDK) from: http://java.sun.com/javase/downloads/index.jsp 1…. Continue reading »