在WAMP中执行Java程序

发布于 2024-12-21 15:42:16 字数 281 浏览 1 评论 0原文

您好,有一个使用 Netbeans 6.9.1 编辑和编译的 Java 程序。运行后,它会在 Netbeans 输出屏幕中给出正确的输出。但现在我需要在 WAMP 服务器中运行这个程序。 WAMP 仅支持脚本语言。

我无法运行我已经构建的Java程序。如果我尝试在 Tomcat 中运行,我将无法部署战争文件。我应该使用 servlet 吗?如果是这样,我如何在 Netbeans Java 应用程序中使用它?或者我应该将Java程序转换(重写)为PHP程序,如果是这样,如何转换? 如何在WAMP或Tomcat中运行Java程序?

Hi, there is a Java program edited and compiled using Netbeans 6.9.1. After running it's giving proper output in Netbeans output screen. But now I need to run this program in WAMP server. WAMP supports only scripting languages.

I can not run the Java program which I have already built. If I try to run in Tomcat I won't get war file to deploy. Should I use servlets? If so, how can I use it in Netbeans Java applications? Or should I convert (rewrite) Java program to PHP program, if so, how to convert?
How do I run the Java program in WAMP or Tomcat?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

踏月而来 2024-12-28 15:42:16

如果您的程序写入标准输出,那么您应该能够以某种方式使用CGI

以下是有关该主题的一些(诚然是旧的)链接:

http ://www.javaworld.com/javaworld/jw-01-1997/jw-01-cgiscripts.html

http://www.gossamer-threads.com/lists/apache/users/184459

它们至少应该指向正确的方向。

If your program writes to standard output, then you should be able to use CGI in some way.

Here are some (admittedly old) links on the topic:

http://www.javaworld.com/javaworld/jw-01-1997/jw-01-cgiscripts.html

http://www.gossamer-threads.com/lists/apache/users/184459

They should at least point in the right direction.

强辩 2024-12-28 15:42:16

您有多种选项来运行您的 java 程序:

  1. 将您的程序转换为库,然后将其与 PHP
  2. 将您的应用程序打包为 Java Web 应用程序

无论哪种情况,您都应该对 jsp、servlet 有一定的了解 阅读此处< /a>

You have multiple options for running your java program:

  1. Convert your program to a library and then integrate it with PHP
  2. Package your application as a Java Web App.

In either case you should definitely have an idea of jsp, servlet read here

多孤肩上扛 2024-12-28 15:42:16

看起来您已经创建了一个常规 Java 程序,因为它输出到 NetBeans 控制台输出。

您无法将常规 Java 应用程序安装到这样的 Web 平台。您需要将其包装在 JavaServer Pages (JSP) 应用程序、Servlet 或 Applet 中才能在 Web 服务器上运行。之后,安装 Tomcat 或 GlassFish 作为应用程序服务器,以便能够在本地主机上访问它(两者也可以从 NetBeans 中获得,可以在“插件”菜单中找到)。

JSP 教程是一个很好的入门资源:http://java.sun。 com/developer/onlineTraining/JSPIntro/contents.html

WAMP 不会有任何帮助,它只能充当 PHP 内容的主机。

It looks like you've created a regular Java program because it outputs to the NetBeans console output.

You can't install a regular Java application to a web platform like that. You need to wrap it in a JavaServer Pages (JSP) application, Servlet or Applet to be able to run it on a web server. After that, install Tomcat or GlassFish as an application server to be able to access it on localhost (both are also optionally available from NetBeans, they can be found in the Plugins menu).

A good resource to start is this tutorial on JSP: http://java.sun.com/developer/onlineTraining/JSPIntro/contents.html

WAMP won't be of any help, it can only serve as a host for PHP content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文