Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7991047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:11:00+00:00 2026-06-04T13:11:00+00:00

I am running a Java application through my JSP page. is it possible to

  • 0

I am running a Java application through my JSP page.
is it possible to redirect everything that the Java app prints into System.out into my page?

Edit:
I have a package pkg which contains a main function. this function has lots of System.out.println calls. e.g.

package pkg;
public class pkg {
    public static void main(String[] args) {
        System.out.println("Hello");
    }
}

In my index.jsp I call:

<%
    pkg.pkg.main(new String[] {});
%>

I need to see everything the pkg.pkg.main prints on the page. e.g.

Hello
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T13:11:01+00:00Added an answer on June 4, 2026 at 1:11 pm

    Refactor the code of the called class so that it takes a Writer as argument, and print to this Writer rather than System.out:

    package pkg;
    public class pkg {
        public static void main(String[] args) {
            main(new OutputStreamWriter(System.out), args);
        }
    
        public static void main(Writer writer, String[] args) {
            PrintWriter out = new PrintWriter(writer);
            out.println("Hello");
        }
    }
    

    and call this second main method from your JSP (which should be a servlet):

    <%
        pkg.main(out, new String[] {});
    %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Java application which is running as non root mode. My App
I am in the process of creating a java application that will be running
I am developing a Java web application that bases it behavior through large XML
I'm currently running an application that can only be run through a program/s commandline
We are running an web application that is using Java 64bit 5 gigs of
I have a java web application that I am developing in Netbeans (and running
I'm writing an application that uses GDB to access information through java. Using Runtime.getRuntime.exec,
I have an external Windows .exe that is actually Java application: Running the .exe
I have an Java application running in JBoss in which I have enabled JMX
In Java, assume 3 java application running. a) Firstly, My application running b) Secondly,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.