English 中文(简体)
在 Web 浏览器中运行 Java 代码
原标题:Running a java code in Web browser

作为学生,我创建了一个网站,我在那里主持实验。这些实验只不过是 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.

提前感谢。

问题回答

如果您正在使用 Java 6 或以上, 您可以查看 < a href=" http://java. sun.com/ developmenter/technical articles/ J2SE/ Desktop/ statiming/" rel=" nofollow" > JSR 223 (JDK的通用脚本)。 除其他外, 它允许您将 Java 代码作为脚本运行, 例如, 当使用 < a href= > 时, 例如 http:// www.beanshell.org/intro.html " rel=" nofolpol " > BeanShell 。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签