https://bugs.documentfoundation.org/show_bug.cgi?id=163748

--- Comment #17 from Heesu Ban <[email protected]> ---
@Mike, 

I found out how to debug in command line without full IDE.

I attached zip file which contains class compiled by jdk8.

Here is steps.
1. download "class compiled with JDK8" and unzip it
2. open command window
3. cd unzipped folder
4. make path variable include jdb.exe 
   > set path=%path%;"C:\Program Files\Java\jdk-1.8\bin"
5. execute jdb. need to fit classpath with YOUR LibreOiffce path.
   > jdb -classpath bin;C:\LibreOffice\program\classes\*;
working.PageStyleBackgroundTest
   debugger will start
6. set breakpoint at 231 line
   > stop at working.PageStyleBackgroundTest:235
7. run debugger
   > run
8. debugger will stop at breakpoint. see variables with print 
   main[1] print graphic
9. use other debugger command. please refer to below link for that.
   https://docs.oracle.com/javase/8/docs/technotes/tools/windows/jdb.html

Thank you

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to