Maven java 8
1.8 1.8
Sleep in java
Option 1: Thread.sleep(4000); Option 2: import java.util.concurrent.TimeUnit TimeUnit.SECONDS.sleep(2);
Java get mouse position on screen
double mouseXPoistion = MouseInfo.getPointerInfo().getLocation().getX(); double mouseYPosition = MouseInfo.getPointerInfo().getLocation().getY();
Append character at first position in StringBuilder java
class TestJava { public static void main(String[] args) { StringBuilder sb = new StringBuilder(); for(int i=0;i
import android.support.v7.app.appcompatactivity error
import androidx.appcompat.app.AppCompatActivity;import androidx.appcompat.app.AppCompatActivity;
Get class by name java
String className = “TestClass”; Class class = Class.forName(className); //Create instance of the specified class Object classInstance = class.newInstance();
Java android show toast
Toast testToast = Toast.makeText(this, "Your Message Here", Toast.LENGTH_LONG); testToast.show();Toast testToast = Toast.makeText(this, "Your Message Here", Toast.LENGTH_LONG); testToast.show();
Top Wishlisted games on steam
Steam.getGames().stream().forEach((game) -> { if(game.getName().equals(“Karlson”) { game.wishList(); } }); Another Option whishlist karlson on steam
set java_home in mac
Step-1: open terminal and type ls -al if you did not find the .bash_profile proceed with Step-2 else continue with Step-3 Step-2: touch .bash_profile Step-3: open -e .bash_profile Step-4: export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_281.jdk/Contents/Home Step-5: save it and close it Step-6: source ~/.bash_profile Step-7: echo $JAVA_HOME