作为学生,我创建了一个网站,我在那里主持实验。这些实验只不过是 Java 或 c+++ 或 c+++ 中的源代码。例如,如果我们必须开发一个代码,用于先打印10个数字,那么我将主持一个名为“数字.java”的文件,包含以下代码
import java.io.*;
class numbers
{
public static void main( String args[])
{
int i;
for(i=1;i<=10;i++)
{
system.out.println(i);
}
}
}
This is just an example. I host such files and people do refer them while performing practicals.
But as a developer, I want to create playground similar to Google s playground. On this playground peoples can execute this codes online in web browser itself.
I know such codes can be executed with applets, or even can be rewritten in php for execution but still I don t want rewriting work I want to execte them as it is on web broswer. That simply means I want to run .java file in web browser.
So it is possible to run the java codes like on which is shown above in web browser. If it is possible then please suggest me the changes which I should make in above code.
提前感谢。