"The only thing that interferes with my learning is my education."
যারা নতুন জাভা শিখতেছে তাদের জন্য দিলাম । নিচের কোড টা রান করে দেখতে পারেন । মজা লাগবে ....
import java.awt.Robot;
import java.util.Random;
public class Moja
{
public static void main(String[]args)
{
Random r = new Random();
try
{
while(true)
{
int Xcoordinate=r.nextInt(900);
int Ycoordinate=r.nextInt(800);
Robot a=new Robot();
//this method will move your cursor to the location base on Xcoordinate and Ycoordinate
a.mouseMove(Xcoordinate,Ycoordinate);
Thread.sleep(400);
}
}
catch(Exception exception)
{
exception.printStackTrace();
}
}
}
অনলাইনে ছড়িয়ে ছিটিয়ে থাকা কথা গুলোকেই সহজে জানবার সুবিধার জন্য একত্রিত করে আমাদের কথা । এখানে সংগৃহিত কথা গুলোর সত্ব (copyright) সম্পূর্ণভাবে সোর্স সাইটের লেখকের এবং আমাদের কথাতে প্রতিটা কথাতেই সোর্স সাইটের রেফারেন্স লিংক উধৃত আছে ।