iGuest 3 Report post Posted January 3, 2005 hey, do any of you programmers know how to do this with a program? i am not as proficient in c as i am in java. Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 11, 2005 hi friend,i really dont think, there is any ready made program to do this. looks like a good project to try on.baggy.. Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 yes can convert java to c (creating c code emulator to java) is java working on c base code you can find in http://www.planet-source-code.com/ Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 and yes you can?t contacto to my : aflm@vtr.net Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 16, 2005 im pretty sure i've seen things that do this before... have you actually tried looking for one because it shouldn't be too hard to convert simple programs seeing as how java and c at syntaxically very similar.. but if you get one to work with complex programs you will very likely become rich. a lot of java programmers would enjoy the performance gains from c without having to learn c or recode anything Share this post Link to post Share on other sites
iGuest 3 Report post Posted August 1, 2008 Replying to mortalmattGcj can do this. I'm not sure if there's a windows version, though... On the other hand I'm fairly sure that even if you're running it on a linux machine you can have it compile into windows format.-reply by Oliver Share this post Link to post Share on other sites
iGuest 3 Report post Posted October 9, 2009 convertconvert .java to .c class overloadDemo{Void test(){System.Out.Println("No parameter");}Void test(inta,intb){System.Out.Println("a and b:"+a+" "+;}Void test(double a){System.Out.Println("Inside test(double) a:" +a);}}Class overload{Public static void main(String args[]){OverloadDemo ob=new overloadDemo();Int I=88;Ob.Test();Ob.Test(10,20);Ob.Test(I);Ob.Test(123.2);}}-reply by ankit Share this post Link to post Share on other sites
iGuest 3 Report post Posted February 12, 2010 I could suggest a tool called JCGO (http://www.ivmaisoft.com/jcgo/) which is a Java source to C translator. -reply by ivmai Share this post Link to post Share on other sites