I have the following code...
How do i configure Eclipse to "prompt me" with the argument
In this case, it'll be easier to give two inputCode:public static void main(String[] args)
{
new DemoKMeansImageClustering(args[0],args[1]);
}
Printable View
I have the following code...
How do i configure Eclipse to "prompt me" with the argument
In this case, it'll be easier to give two inputCode:public static void main(String[] args)
{
new DemoKMeansImageClustering(args[0],args[1]);
}
You'll have to configure a Run Configuration dialog for your class and add the argiments on the program arguments tab.