so I know in C++ I can just do this:
ifstream file("data/maps/ssdebug1.cfg");
string line;
float startx = 0;
sscanf (line.c_str(), "start-x = %f;", &startx);
But is there a equally easy way to do this in Java?
|
|
In Java you can do
|
|||
|
|
|
from java Version 1.5 you can use java.util.Scanner also.. Example :
|
|||
|
|