I have a .const file, lets say abc.const (a cpp file). the contents of that file is,
xyz :ullong:0x1000000000000000ULL yub :ullong:0x0100000000000000ULL .... ....
now i ve a program to convert this file to .java class.
But when i try above,
i got the following error
abc.java:255: ';' expected public static final long xyz = 0x1000000000000000ULL;
how should i resolve this. thanks in advance??
( i need to generate a .java class from this .const file by solving this )