Tagged Questions

2
votes
2answers
235 views

Looking for the Code Converter which converts C# to Java

Can anybody help me by suggesting the name of an converter which converts C# code to Java code. Actually, I have a tool which is written in C# code and I am trying to modify it. As I have no idea ...
2
votes
4answers
124 views

Code to html converter

What is good free tool (both online, offline) to convert code (could be also html code) text snippet (already formatted) to html with code highlighting (keywords at least) and keep original formatting ...
2
votes
1answer
149 views

C# version of mp4parser

I am looking to parse mp4 for my .net application. I couldn't find any mp4 parser in .net. Found mp4parser which is in java. Please let me know is there any C# version available? if no, is it ...
1
vote
2answers
118 views

Looking for a Code Converter to Convert a Normal Java Code to Reflection-Style Code

I'm looking for a converter to make a reflection-style Java code from a normal Java code. I'm doing this to prevent exceptions like NoClassDefFoundError (I want to be dependent to a class, but I want ...
1
vote
4answers
3k views

Conversion of Delphi code to Java

Does a parser exist for delphi which can be used to convert the delphi code into Java code automatically? Please Help!!!
0
votes
1answer
117 views

Convert Java Code To PHP - URL Connections and Reading Response

I wrote the following Java program to connect google.com, get its HTML source code in return, print the entire source code on the screen and then count the no. of line breaks (<br>) in the code. ...