Capturing trace() output

Does anyone know if there's a way to capture the output of
trace()? I'm trying to display trace statements in my application
for debugging purposes. I know I can use the debugging console in
Flex Builder or view the log files directly, but this approach has
its advantages for our situation. Any suggestions would be
appreciated. Thanks.

Would a sql based solution (not from the OLAP worksheet tool/utility) work for you?
DECLARE
a_out varchar2(2000);
BEGIN
a_out := '';
dbms_aw.aw_attach(name=>'USER1.AW1',forwrite=>false);
dbms_aw.run(cmd=>'dsc DIM1', output=>a_out);
dbms_output.put_line('AW cmd output (object DIM1): '|| a_out);
dbms_aw.aw_detach(name=>'BIA_RTL_OLAP.PSLSINV');
END;
**************

Similar Messages

  • Unable to Capture ALV output in an Internal Table, after CALL TRANSACTION

    Dear all,
    My requirement is to run multiple materials in T-code CK86_99 but as we know CK86_99 is only adequate to one material at a time.
    So, I want to capture the Output of the T-code in my Internal table with respect to all the Material Numbers I use in the Select-Options of my Z Program.
    Below is the Code I developed so far, but the Class
    cl_salv_bs_runtime_info=>get_data_ref(
            IMPORTING r_data = lf_ref ).
    is not capturing the Ouput...
    Please have a look and enlighten me how it could be solved.
    TABLES : mara.
    DATA : BEGIN OF wa_mara,
      matnr TYPE mara-matnr,
      END OF wa_mara.
    DATA: it_bdcdata TYPE TABLE OF bdcdata,
          wa_it_bdcdata LIKE LINE OF it_bdcdata,
          it_mara LIKE TABLE OF wa_mara.
    *      BELNR(10).
    FIELD-SYMBOLS:<fs_tab> TYPE ANY TABLE,
    <fs_line> TYPE any.
    DATA:lf_ref TYPE REF TO data,
         lf_ref1 TYPE REF TO data.
    SELECT-OPTIONS so_matnr FOR mara-matnr.
    PARAMETERS p_werks LIKE t001w-werks.
    *BELNR = 'Z92'. " Give Document Number here
    SELECT matnr FROM mara INTO TABLE it_mara WHERE matnr IN so_matnr.
    DATA opt TYPE ctu_params.
    LOOP AT it_mara INTO wa_mara.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-program  = 'SAPMKKB0'.
    wa_it_bdcdata-dynpro   = '0300'.
    wa_it_bdcdata-dynbegin = 'X'.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'BDC_CURSOR'.
    wa_it_bdcdata-fval = 'KKB0-MATNR'.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'KKB0-MATNR'.
      wa_it_bdcdata-fval = wa_mara-matnr.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'BDC_CURSOR'.
    wa_it_bdcdata-fval = 'KKB0-WERKS'.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
      wa_it_bdcdata-fnam = 'KKB0-WERKS'.
    wa_it_bdcdata-fval = p_werks.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'BDC_OKCODE'.
    wa_it_bdcdata-fval = 'OSNY'."'ONLI'."=CRET'.
      APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-program  = 'SAPLKKRSOO'.
    * wa_it_bdcdata-dynpro   = '0100'.
    * wa_it_bdcdata-dynbegin = 'X'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-fnam = 'BDC_OKCODE'.
    *  wa_it_bdcdata-fval = 'BACK'."=CRET'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-program  = 'SAPMKKB0'.
    * wa_it_bdcdata-dynpro   = '0300'.
    * wa_it_bdcdata-dynbegin = 'X'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-fnam = 'BDC_OKCODE'.
    * wa_it_bdcdata-fval = 'EXIT'."=CRET'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
      opt-dismode = 'N'.
    cl_salv_bs_runtime_info=>set(
        EXPORTING display  = abap_false
                  metadata = abap_true
    data     = abap_true ).
      CALL TRANSACTION 'CK86_99' USING it_bdcdata OPTIONS FROM opt.
      TRY.
    cl_salv_bs_runtime_info=>get_data_ref(
            IMPORTING r_data = lf_ref ).
          ASSIGN lf_ref->* TO <fs_tab>.
        CATCH cx_salv_bs_sc_runtime_info.
          MESSAGE 'Unable to retrieve ALV data' TYPE 'E'.
      ENDTRY.
    cl_salv_bs_runtime_info=>clear_all( ).
      IF <fs_tab> IS ASSIGNED.
        CREATE DATA lf_ref1 LIKE LINE OF <fs_tab>.
        ASSIGN lf_ref1->* TO <fs_line>.
      ENDIF.
    *LOOP AT <FS_TAB> ASSIGNING <FS_LINE>.
    *ENDLOOP.

    Hi Abhay,
          If you go to Transaction code SE93, enter the tcode "CK86_99" and click display, you may see the default value for transaction is "KKBB" and the screen field for P_SCREEN = 0300, P_TCODE = ck86_99.
          You may need to copy the transaction code "KKBB" and go to SE93 again, enter the tcode for "KKBB" then click display, now you may see the program name is "RKKB1000".
          Hope this answer your question.
    Thanks
    Hock Lin

  • How to capture graphical outputs from other programs

    Does anyone know how we capture the graphical outputs from the other programs and show them
    on the swing?
    I'd like to use a java program to run gnuplot, capture the outputs, and show them using swing.

    Depends on what you mean by "graphic outputs".
    Taking a quick glance at the gnuplot homepage, it looks as if you can output to PNG files, so just run the app, and load the png file.

  • How to capture the output of another program into a File/String

    I needed to capture the output of a dos program in an String/file I tried doing Runtime.getRuntime.exec("ipconfig /all >tmp.txt");
    but still I am unable to capture the output frm the program which I would like to capture in a file or String.Can anyone help

    When you use the Runtime.exec() method, it returns a Process object, that process object has access to the streams; stdout, stdin, and stderr of the application you just executed. what you'll want to monitor is the stdout or stderr streams using the
    p.getInputStream() or p.getErrorStream(), where p = the process object returned via the Runtime.exe() method.

  • Capturing the output of a os command line

    I need to capture the output of a os command line executed from one java program and I don't know how can do it.
    For example:
    Runtime.getRuntime().exec("hostid");

    Your suggestion worked very well, just in case that this could interest somebody, this is the complete solution
    Thanks for your help
    import java.io.*;
    public class HostID
    public static void main(String args[]){
    try{
    InputStream in = (Runtime.getRuntime().exec("hostid")).getInputStream();
    byte[] arreglo= new byte[200];
    int cantidad = in.read(arreglo);
    System.out.println(new String(arreglo,0,cantidad));
    } catch (IOException ioe){System.out.println(ioe.getMessage());}
    }

  • Capturing the output of a jsp page and save that output in a WORD .doc file

    Hi,
    This is Naveen. I got stuck up with a problem/doubt. URGENT ! URGENT !
    My doubt is how to capture the output of a jsp page(the content is dynamic generated) and save that output to a MS-Word doc file.
    I know that therez an option of using Servlets Filters, but this concept is supported by Servlet 2.3 spec. and not earlier. And we are working on previous spec. and our web-servers also supports the prev. version and not the 2.3 version.
    If incase, therez a third-party utility for free usage, suggestions are appreciated.
    Hope most of them came across this kind of functional requirement. If anyone of them succeeded in this, please express ur bitter experience if any, faced during the coding.
    Thanks in Advance for help.
    Naveen

    You can set the MIME content type as .doc and try to open the Page.
    res.setContentType("application/vnd.ms-excel"); to generate the Page output as Excel
    res.setContentType("application/vnd.ms-word"); to generate the Page output as MS Word doc
    Hope this helps..

  • Capturing the Output of a webservice on an APEX form

    Hi,
    I have created an application that calls a Webservice (BPEL process). The application has a single form that takes in a single field (ReviewDate) and calls the Webservice. The Webservice does its thing and returns a mesage "The review date has been accepted".How do I capture this message in my form? I have the placeholders for input and output parameters but the output is not returned to the form. What do I need to do capture this message?
    Also, please note that the webservice does its thing successfully. I only need to capture the output of the webservice in my form.
    Thanks
    Vijay

    You can set the MIME content type as .doc and try to open the Page.
    res.setContentType("application/vnd.ms-excel"); to generate the Page output as Excel
    res.setContentType("application/vnd.ms-word"); to generate the Page output as MS Word doc
    Hope this helps..

  • Why using afxDump now in VS2013 generates extra TRACE output

    Hi,
    since using VS2013 instead of VS2010 old code using the afxDump object creates "extra" output.
    Something like:
    d:\...\bcgcbpro\bcgcbpro.cpp(39) : atlTraceGeneral - BCGCBPRO.DLL Initializing!
    The reason for the TRACE related output is to be found in "dumpcont.cpp":
    void CDumpContext::OutputString(LPCTSTR lpsz)
    // use C-runtime/OutputDebugString when m_pFile is NULL
    if (m_pFile == NULL)
    TRACE(atlTraceGeneral, 0, _T("%s"), lpsz);
    return;
    ASSERT( lpsz != NULL );
    if( lpsz == NULL )
    AfxThrowUserException();
    // otherwise, write the string to the file
    m_pFile->Write(lpsz, static_cast<UINT>(_tcslen(lpsz))*sizeof(TCHAR));
    One of the most unreadable outputs via afxDump is:
    f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - CRibbonButtonf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - @ f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - $0BB99940f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - disabledf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - " (description "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open the object referenced in the current cell.f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", tooltip "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", image sizef:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - s f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - (f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 16f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - x f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 16f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - )f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - /f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - (f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 32f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - x f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 32f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - )f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - , image indexes f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 27f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - /f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 27f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - , keys "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - OOf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ) -> f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 34329f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - / f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - CRibbonItemResources { ID f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 34329f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - , resource "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open the object referenced in the current cell.\nOpen Object\nOpen Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", name "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", tooltip "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", description "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open the object referenced in the current cell.f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", from f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - module f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - $43000000f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - }f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral -
    Is there any chance to switch the TRACE output off?
    Since the big changes in the ATL library and since the AtlTraceTool got unnecessary removed from the distribution ... how to configure TRACE output?
    Best regards,
    Martin
    Martin Lemburg Berlin / Germany
    Martin0815@twitter
    martinlemburg@facebook
    http://about.me/Martin0815

    Hello Together,
    I have got this issue now in porting Sources from VS2010 (vc10) to VS2013 (vc12)
    The recommended fixes in 
    https://social.msdn.microsoft.com/Forums/en-US/cfc569ef-e229-4559-b245-ece2bba1e238/getting-rid-of-atltracegeneral-category-shown-in-atltrace-output?forum=vcgeneral
    defining ATLTRACE and ATLTRACE2 with own Custom Methods worked fine for me. All
    simple TRACE - calls  but only in my own code was handled better.
    But afxDump - Output is not affected by this change. 
    After some investigation I believe the here suggested tip
    ATL::CTrace::SetLevel(ATL::CTrace::DisableTracing);
    will also not produce the expected results, because it will simply disable all the afxDump-Output. by returning the method.
    I believe, Microsoft has to implement some flags to configure and suppress filename/category-Output for afxDump (CDumpContext), and finally in _CrtDbgReportW because CTrace::TraceV will finally run in
    this method. So, the output of 3rd-party assemblies could also be affected. (probably also for ATLTRACE, ATLTRACE2 to avoid own override of TraceImplementation.
    In this case I will see dump output, but without filename/category
    eg. 
    #ifdef _DEBUG
    afxDump << "ValidateName: returns <" << fileName << "> \n";
    #endif
    should return simple (old) output
    ValidateName: returns<SomeTestFileName> 
    instead of funny:
    f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral -
    ValidateName: returns <f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral -SomeTestFileNamef:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral
    - > 
    I think, I will replace some of these simple afxDumps with simple TRACE with pre-formatted-single string.
    Best regards
    Dietmar.

  • SQLStateMapping.java:70 Error When Loading Database Capture Script Output

    I'm running "Migration->Third Party Database Offline Capture->Load Database Capture Script Output" (Sybase 12) (SQLDeveloper 1.5.5)
    After Tables are loaded (16000+ tables), I'm getting the following error in Migration Log:
    Error ocurred during capture: In Columns for <column_name>
    oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
    I could not find any hits that match this. What's the best method to troubleshoot this?

    Log a service request with the offline scripts and we can check them out and forward them also to Development if needed.

  • Capturing the output from jsp selvlet

              Hi,
              I have a requirement where I need to capture the output of the JSP generated servlet
              , and do something with it before it get's to the client side.
              Has someone done something like this before.Any ideas, suggestions .
              Thanx,
              Tajdar
              

    You can set the MIME content type as .doc and try to open the Page.
    res.setContentType("application/vnd.ms-excel"); to generate the Page output as Excel
    res.setContentType("application/vnd.ms-word"); to generate the Page output as MS Word doc
    Hope this helps..

  • To capture the output

    Hi all ,
    I Wish You A Happy New Year!!!!!!!!
    I am trying to capture the output of a java program into a file i.e,when I run the java program at command prompt and get the output, the output must be automatically captured into a file is this possible using java code
    Please help me
    Thanks,
    raghu

    And Mac OS/X is a unix variant, so it works there too.
    You can also redirect standard output in Java itself by using System.setOut, but once you're altering the Java code, I'd suggest refactoring the code so that it doesn't send all its output to standard output necessarily.

  • How to create "Verbose mode" (Enable/disable trace output)?

    Hi there! I'd like to do as Papervision:
    // Block Papervison3D trace output
    Papervision3D.VERBOSE = false;
    that is, a global variable for enabling/disabling the trace outputs of my own program. I come up with creating
    a class and putting a static boolean member variable. But there is something I'm not sure about: How to use
    it...
    For example: every time I need to do a trace, would I have to put this ? -->
    if( MyClass.VERBOSE ) trace("whatever");
    So it isn't needed to instance the object because a static variable is used. That's the way, isn't it?
    Thanks and regads.

    From the book I'm reading, the author uses it the same way you're saying:
    Inside your Classes, you have
    private var _verbose:Boolean = false;
    I noticed he uses it always (or almost) in the constructor of the classes:
    public function whatever (var:*, verbose:Boolean);
    //I tend to use verbose:Boolean = false on the constructor too so you don't have to always set it.
    inside the constructor you have:
    _verbose = verbose;
    and normaly inside methods handling events like Event.OPEN, Event.INIT, IOErrorEvent.IO_ERROR, HTTPStatusEvent.HTTP_STATUS, you have something like this:
    private function onOpen (e:Event):void {
         if (_verbose) {
              trace("The loading process has begun, or whatever");

  • Mediator fails to capture bpel output

    Mediator fails to capture bpel output
    Edited by: soauser on Jan 8, 2012 10:24 AM

    Mediator fails to capture bpel output
    Edited by: soauser on Jan 8, 2012 10:24 AM

  • Capture - sequence - output settings FC Studio

    Hi. I have been using FCS2 a number of years with no probs shooting on a Canon XL1s in frame rate and when rendering in slow mo at 50% everything fine. (Shutter speed at 50)
    My results have now changed, slow mo is seriously stepping even when images are not passing through the frame quickly.
    When capturing frame rate I am using the following settings
    Capture - sequence and output (via Compressor) Progressive.
    When adding the captured clip to the time line FCS wants me to change it to bottom 1st interlaced with no obvious improvement in outcome for slow mo work
    Have tried permutations of this in each step, interestingly the best result for using a slow motion sequence seems to be to change every step - capture - sequence - output - dvd authoring - all to bottom 1st, but this does seem to lower the over-all look and result in pic quality.
    Am I doing something real dumb or is my system playing up?
    cheers
    Philip

    Hi, Philip. Repost your question in a forum whose readers are more likely to be familiar with the software you're using — one of the ones listed under "Pro Applications: Video" on this page:
    http://discussions.apple.com/index.jspa?categoryID=1
    Good luck!

  • Capturing Program Output

    I have a program in which I want to capture the output generated when I run the class. The function is off in another java file that I have imported into this one. Some of the code is below.
    Tester controllerTester = new Tester();
    controllerTester.runtest(testArray);
    runtest outputs information via System.out.println and I am wanting to capture that information. How do I go about doing this? I have sucessfully captured output in another program that executes an external program with the Process p = Runtime.getRuntime().exec(program) command. I just need to know how to capture the output from runtest above. Any help would be appreciated.
    Thanks...Chris

    Runtime.getRuntime().exec(program) command. I just
    need to know how to capture the output from runtest
    above. Any help would be appreciated.[url http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#setOut(java.io.PrintStream)]System.setOut(PrintStream) might be of help. Though it'll capture any output to system out, not only that produced by the method you mention (no problem if the code is executed in a single-threaded environment).

Maybe you are looking for

  • How do I save my numbers spreadsheets as Excel as I could in previous version of Numbers?

    I updated to MAvericks and right after got a not that iWorks had updates, now my Numvers does not have key functionality that I need in order to send spreadsheets and worknooks back and forth with companies I work with. How do I save my numbers sprea

  • Setting Up Logical Data Source - DBConnection_DAC

    Hi There, In DAC, you have a logical data source define as "DBConnection_DAC" , The same can be used to populate a parameter value in Source System Parameters. Does any know how to set this up of test this "Logical Data Source". Thanks in advance. AJ

  • Collective order problem

    Hi gurus:       I having a problem  when I use collective order, discrible as below: When I do the confirmation for the last operation of the subordinate order, it does not trigger  the auto-GR and auto-GI to the parent order. What can be the possibl

  • Safari 5 - weird jaggy fonts issue

    this particular bug i'm reporting appears at the bottom of this page: http://www.apple.com/macmini/design.html it's very strange - when you first go to the page, the whole block of text links (in the div with class="breadory") appears with jaggy font

  • Display data in jan-2009 to feb-2009 (N) , mar-2009 to may-2009 (Y)

    i have data in columns as month status 01-jan-2009 N 01-feb-2009 N 01-mar-2009 Y 01-may-2009 Y 01-jun-2009 N 01-jul-2009 N 01-aug-2009 N i want to display data as jan-2009 to feb-2009 (N) mar-2009 to may-2009 (Y) jun-2009 to aug-2009 (N)