Printing java code. A good app?

Hi all. I want to print some java code, and I would like it to have the formatting of these forums with the bold settings. All the applications I've used for editing java are color coded, which is great for coding with, but my printer is black and white. I would like to find an app that formats java similar to this forum when you use the code tags so it will make reading the code on hard copy easier.
Any suggestions?

I wrote syntax highlighting code:
http://ostermiller.org/syntax/
You could use the application with it that creates syntax highlighted html from the source files:
http://ostermiller.org/syntax/tohtml.html
Using that it is very easy to change how the various elements are displayed. you simply change their attributes and colors in a cascading style sheet. You would just have to modify one similar to this one:
http://ostermiller.org/syntax/syntax.css
There are some examples of how to make things bold and italic in there already.

Similar Messages

  • Calling java code from oracle apps form

    I've created my own java .class file and am attempting to call it from an oracle applications form. I am getting a runtime error while running the form, but I don't know what the error is because nothing is being reported to me.
    I've created the .java file in JDeveloper, compiled it into a .class file, deployed it to a .jar file, and placed it on the application server in a directory that the CLASSPATH can see it. I've added it to the archive parameter of the appsweb.cfg file and see that the .jar file is being downloaded when the JInitiator of Oracle Apps is started.
    I have also imported the .class file into the form via the Program -> Import Java Classes which resulted in PL/SQL package stubs created to call the .class methods.
    When I run the form, the java code is activated on a triggering event, PRE-INSERT. There is no java bean item in a block or on a canvas anywhere. I dont' think I need there to be since I am simply using the java code to perform actions during PRE-INSERT, not to display anything on the canvas.
    I have placed debug messages throughout my code and see that the error is occuring in the PL/SQL packaged stub at the line "JNI.GET_CLASS()" where the parameter to that call is the name of my class. I know it's erroring there because I am handling the "java_error" exception. I am displaying "ora_java.last_error" in the exception handling, but it is null.
    I am at a loss as to determine why I am having problems and how to display an error. Any suggestions? I'm happy to outline my steps and problem in more detail if I have missed something obvious.
    We are using Forms 6.0.8.21.3 with Oracle Apps 11.5.7.
    Shane.

    Shane,
    Don't loose the heart. You have come too close to end.
    The scenario you have mentioned is very unique and something which will fit more in the forms forum. So I think that was a sincere answer to help you and not a "pass the buck" card type game :)
    You are lucky that you got Tapash interested into this issue, otherwise you see there is no OAF component involved out here.
    I have an article promised to some of the guys but will follow this issue.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I am trying to print to a dell printer and need a good app

    Does any one know of a good app to print to a dell V313W wifi printer from an ipad 2?

    You might want to try Airprint Activator. Free/Donationware. Works really well for me.

  • How to print/list all the groups/users present in Weblogic using Java code

    Hi,
    Weblogic version : 11.1.1.5
    How to print/list all the groups/users present in Weblogic using Java code
    I want to make a remote connection to Weblogic server and print all the users/groups present in it.
    I have gone through the below mentioned site, but I cannot use the same approach since most of the API' are deprecated for example "weblogic.management.MBeanHome;"
    http://weblogic-wonders.com/weblogic/2010/11/10/list-users-and-groups-in-weblogic-using-jmx/
    Thanks in advance,
    Edited by: 984107 on 05-Feb-2013 05:26
    Edited by: 984107 on 05-Feb-2013 22:59

    see this http://www.techpaste.com/2012/06/managing-user-groups-wlst-scripts-weblogic/
    Hope this helps.

  • Problem in printing pdf document with java code

    Hi All
    I want to print a pdf document with java code i have used PDFRenderer.jar to compile my code.
    Code:
    File f = new File("C:/Documents and Settings/123/Desktop/1241422767.pdf");
    FileInputStream fis = new FileInputStream(f);
    FileChannel fc = fis.getChannel();
    ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
    PDFFile pdfFile = new PDFFile(bb); // Create PDF Print Page
    PDFPrintPage pages = new PDFPrintPage(pdfFile);
    // Create Print Job
    PrinterJob pjob = PrinterJob.getPrinterJob();
    PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
    pjob.setJobName(f.getName());
    Book book = new Book();
    book.append(pages, pf, pdfFile.getNumPages());
    pjob.setPageable(book);
    // System.out.println(pjob.getPrintService());
    // Send print job to default printer
    pjob.print();
    but when i am running my program i am getting error
    Exception in thread "main" java.awt.print.PrinterException: Invalid name of PrintService.
    Please anybody, knows the solution for this error?
    Thanks In Advance
    Indira

    It seems that either there is no default printer setup or you have too many printers or no printer setup at all. Try running the following code. It should print the list of available print services.
    import java.awt.print.*;
    import javax.print.*;
    public class PrintServiceNames{
         public static void main(String args[]) throws Exception {
              PrintService[] printServices = PrinterJob.lookupPrintServices();
              int i;
              for (i = 0; i < printServices.length; i++) {
                   System.out.println("P: " + printServices);
    }From the list pick one of the print service names and set it explicitly like "printerJob.setPrintService(printServices);" and then try running the program.

  • Convert Below Java code equivalent to c# windows store app.

    Hi
    please help me " To convert Below Java code equivalent to c# windows store app."
    private String SecretKey = "enctsbqrm6hxyjfa";
        public byte[] encrypt(String text) throws Exception
            if(text == null || text.length() == 0)
                throw new Exception("Empty string");
            // convert key to bytes
            byte[] keyBytes = SecretKey.getBytes("UTF-8");
            // Use the first 16 bytes (or even less if key is shorter)
            byte[] keyBytes16 = new byte[16];
            System.arraycopy(keyBytes, 0, keyBytes16, 0, Math.min(keyBytes.length, 16));
            // convert plain text to bytes
            byte[] plainBytes = text.getBytes("UTF-8");
            // setup cipher
            SecretKeySpec skeySpec = new SecretKeySpec(keyBytes16, "AES");
            Cipher cipher = Cipher.getInstance("AES/ECB/PKCS7Padding");
            //byte[] iv = new byte[16]; // initialization vector with all 0
            cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
            // encrypt
            byte[] encrypted = cipher.doFinal(plainBytes);
            return encrypted;
      Thanks            
      Nitin

    Hello Nitin,
    Your current requirement is beyond the scope of our support for this fourm which is used to Discuss and ask questions about .NET Framework Base Classes (BCL) such as Collections, I/O, Regigistry, Globalization, Reflection.
    If you want to know how to encrypt/decrypt in windows store app, I suggest that you could post a it to:
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/home?forum=winappswithcsharp
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to execute solaris lpd printing command from java code

    hi folk,
    I want to print a post script file on a network printer (my java code will receive the Printer's IP Address and the filename ) , i'm using the solaris lpd printing command :
    lpadmin -p banana_ps -o protocol=bsd,dest=IP -v /dev/null
    -m netstandard -T PS -I postscript
    my question is how execute this command from the java code :)
    i really appreciate ur advices

    Hi,
    See RunTime.getRuntime ().exec (...).
    Hope that help,
    Jack

  • Can anyone recommend a good app for designing and printing labels?

    I have just switched from pc to mac and have pages on my macbook but it does not have a label function (please apple sort this out its the only major flaw!) so can anyone recommend a good app that will do what a pc does? I do not really want to pay £85+ for office for mac just for the word program

    One way to find an app at the App Store is to use keywords.
    Type   print labels   in the search field top right corner of the App Store window then press Enter or Return on your keyboard.
    Click one of the apps listed. Always check Requirements under Information and definitely read customer reviews before purchasing and make sure there is a support link available in case you need to contact the app developer for questions.
    This forum is mainly for troubleshooting the App Store.
    For feedback for software designed for printing labels, try posting your topic in the Mac OS X community here.

  • JAVA CODE  NOT CREATING IDOC

    Hi all
    I m facing problem to upload data through idoc.the scenario is like we receive electric meter reading in flat file format. And to upload that data JAVA code is written which will create an IDOC FILE this authorization is only give to 2-3 person in organization and to basis guy also as user changed it’s password in SAP and in JAVA the java code is not going to create the IDOC file and data is not going to upload. after changing user password in sap system ,user not able to upload the data.
    ISU_MR_UPLOAD01 is the idoc file generated. So is there any authorization issue, password issue how to see and view IDOC IN SAP, can any one help me out into this.
    The error with java throws is as;
    1ST ERROR IN TRACE FILE
    ERROR file opened at 20061109 133610 India Standard, SAP-REL 640,0,59 RFC-VER 3  MT-SL
    T:2736 ======> User TR has no RFC authorization for function group SYST .
    T:2736 <* RfcReceive [1] : returns 3:RFC_SYS_EXCEPTION
    2ND ERROR ON COMMAND PROMT
    C:\j2sdk1.4.2_07>cd bin
    C:\j2sdk1.4.2_07\bin>java sandsupload
    Creating IDoc...Exception in thread "main" com.sap.mw.idoc.IDoc$Exception: (2) I
    DOC_ERROR_METADATA_UNAVAILABLE: The meta data for the IDoc type "ISU_MR_UPLOAD01
    " is unavailable.
            at com.sap.mw.idoc.jco.JCoIDoc$JCoDocument.<init>(JCoIDoc.java:233)
            at com.sap.mw.idoc.jco.JCoIDoc$JCoDocument.<init>(JCoIDoc.java:187)
            at com.sap.mw.idoc.jco.JCoIDoc.createDocument(JCoIDoc.java:10521)
            at sandsupload.main(sandsupload.java:35)
    the part of java code
    try {
                //create a JCo client pool
                JCO.addClientPool( "MyPool",    //pool name
                                   3,           //maximum pool connections
                                   "333",       //SAP client
                                   " TR",    //user ID
                                   " XYZ",  //password
                                   "EN",        //language
                                   " 1.1.1.1   ", //app server host name
                                   "00" );   //system number
                //create an IDoc repository
                IDoc.Repository idocRep = JCoIDoc.createRepository("MyIDocRepository", "MyPool");
                //create a new and empty MATMAS02 document
                System.out.print("Creating IDoc...");
         Line where it shows error
                IDoc.Document doc = JCoIDoc.createDocument(idocRep, "ISU_MR_UPLOAD01");
                //get the root segment from the document
                //The root segment does not contain any fields or data. It is only
                //used as the standard parent segment and won't be transmitted when
                //the document is sent to an SAP system.
                IDoc.Segment segment = doc.getRootSegment();
                //create and add a new and empty child segment of type E1MARAM
                //and fill the segment data

    Hi Gaurav,
    Same exception on the same line has been reported and marked as solved here :
    IDOC_ERROR_METADATA_UNAVAILABLE:
    Btw, I think this forum is not visited often by JCO and ABAP connectivity experts, so maybe you could get a faster response to your problems while posting in "Java Programming" or maybe in some forum under the category ABAP Development.
    HTH
    Peter

  • SQL in JSP - do I use JAVA code in % ... % or SQL Tag Library ??

    I have a small web app that makes needs to make about 12 SQL queries in a JSP and am trying to figure out what is the best way to do this
    I had initially coded this using plain JAVA code in the JSP as follows :-
    <%
    Connection conn = null;
    Statement st = null;
    ResultSet rs = null;
    try {
    st = conn.createStatement();
    rs = st.executeQuery("select .........");
    %>
    But then I came across the SQL Tag Library in an article and wonder if this is more efficient code?
    If so does anyone have a pointer to a good intro to these tags as they look complicated (I only am doing queries on the SQL database, no inserts or updates)

    Sometimes you've gotta do what you've gotta do.
    My rule is "no scriptlets".
    If you MUST access a database from a JSP, the only right way to do it is to use JSTL <sql> tags.
    %

  • Also VERY frustrated:  No java-code executing within JSP

    Hi!
    I'm completely frustrated at last! It must be possible to install tomcat/apache correct but I'm not able to do so!
    New problem:
    I try to view a jsp with IE6 by selecting File\Open. If I choose the copy at '\tomcat\webapps\examples\WEB-INF\jspjbex4.jsp' suddenly Dreamweaver opens and show me the code of 'jbex4.jsp'. When I open a copy of jbex4.jsp located anywhere else on my computer the jsp is shown, but the problem is: No javabean-code is used although it is coded correctly.
    I guess the problem is with some classpath or something quite simillar. When I try to view the examples delivered by tomcat I've got the same problem: Whereever there should be output generated by java-code (e.g. by calling a method like <%= test.getDM() %>) there's nothing!!!!!
    So I checked if apache is working correctly. The test page is shown correctly. So the error must occure somewhere under tomcat. But when starting tomcat I receive no error message..
    Can anyone please help me?
    Thanx a lot!!!!!
    p.s. Yes, 'Normal' java-code is executed fine!

    With tomcat 1.3.3 you place the xml file with the context mapping in the conf folder under the tomcat install directory. You must give the xml file a name that starts with "apps-" followed by something unique, followed by ".xml". So for examle apps-testapp.xml is good. Inside the xml file place the code I gave you above then restart tomcat. Make sure to change the docBase value to the directory that contains your WEB_INF folder and change the path to whatever you want. If the path is set to "/" then you would use the url http://www.yourdomain.com/yourjsp.jsp. If the path is set to "/TestApp" then you use the URL http://www.yourdomain.com/TestApp/yourjsp.jsp.
    For newer version of tomcat I am not sure exactly where the context mapping goes. Instead of in an apps-xyz.xml file it might go in tomcats server.xml file which should also be in the conf directory in the tomcat install directory.
    Each webapp has its own config file which should be at /WEB-INF/web.xml. Look on google or something about that. All your classes go in /WEB-INF/classes/package.name/class.class.
    Put your class files into packages!
    for you you should put your bean at /WEB-INF/classes/testpackage/JspTest.class.
    In the code for JspTest.java place "package testpackage;" at the top then recompile. In your JSP file use <jsp:useBean id="ex4" scope="session" class="testpackage.JspTest" />
    -S-

  • Import java code applet into form and execute it

    Hi all.
    I'm on devsuite 10g.
    I have the following applet code:
    import java.applet.Applet;
    import java.awt.event.*;
    import java.awt.*;
    public class simple2 extends Applet
      implements MouseListener, MouseMotionListener {
          double r0 = 100.0;
          double r1 = 40.0;
        public void paint(Graphics g) {
          int n = 400;
          int x0=0,y0=0,x1,y1;
          for(int i=0;i <=n;i++)
               double rho   = 2*Math.PI*i/n;
               double theta = 16*Math.PI*i/n;
               double x = r0*Math.cos(rho) + r1*Math.cos(theta);
               double y = r0*Math.sin(rho) + r1*Math.sin(theta);
               // cambio sistema di riferimento
               x1 = getSize().width/2+(int)x;
               y1 = getSize().height/2+(int)y;
               // disegno
               if(i>0) g.drawLine(x0,y0,x1,y1);
               x0 = x1;
               y0 = y1;
        public void init() {
          addMouseListener(this);
          addMouseMotionListener(this);
        public void mouseClicked(MouseEvent e) {}
        public void mousePressed(MouseEvent e) {}
        public void mouseReleased(MouseEvent e) {}
        public void mouseEntered(MouseEvent e) {}
        public void mouseExited(MouseEvent e) {}
        public void mouseMoved(MouseEvent e) {}
        public void mouseDragged(MouseEvent e) {
          int x = e.getX(), y = e.getY();
          r0 = x-getSize().width/2;
          r1 = y-getSize().height/2;
          repaint();
          e.consume();
    } I want to import this code into my form in order to execute it.
    Code make possible drawing graphs to screen...
    What I want is to execute this code into my form, in a when-new-block instance trigger or something else.
    How can I achieve this???
    Thanks all for collaboration,
    Fabrizio

    It isn't quite as simple as just "importing" your java code if your goal is to have the forms and the java app communicate with each other. Interaction occurs when a properly designed Java Bean is created.
    Take a look at some of the examples on the following page as they can likely provide you with a good starting place:
    http://sheikyerbouti.developpez.com/forms-pjc-bean/menu/

  • Poor printing java 1.5

    Hi,
    I have a problem with printing on java 1.5 on XP. Everything was fine on 1.42, but now the printing stops after a few pages and the text looks poor. There is no error message when the printing stops early.
    My swing application has several tabbed panes each of which is added to a Book. Each tab is scaled to fit on the page and is printed on a separate page. Each page will print separately but the text still looks bad. Even removing the scaling doesn�t help the text.
    I disable the double buffering before printing.
    I have tried a few different printers and also changing heap sizes �Xmx to 1g but get the same results.
    Any ideas on how I can resolve theses problems?
    Thanks

    Hi Phil,
    thanks for the reply , i have tried your suggestion but got some mixed results.
    Using jre1.5.0_09, the text looks a bit better but still not as good 1.42. The number of paint calls is down to 35. I have noticed some random crashes whn trying to print a book of 12 pages or the printing stops after a few pages. A couple of times it printed the whole book.
    Here is the error log from 1 of the crashes
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c9010f3, pid=29548, tid=13988
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b03 mixed mode, sharing)
    # Problematic frame:
    # C [ntdll.dll+0x10f3]
    --------------- T H R E A D ---------------
    Current thread (0x00a0bb48): JavaThread "Finalizer" daemon [_thread_in_native, id=13988]
    siginfo: ExceptionCode=0xc0000005, writing address 0x056bf014
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x02f8f6d8, EDX=0x056bf00c
    ESP=0x02f8f6e8, EBP=0x02f8f720, ESI=0x056beff8, EDI=0x056bf00c
    EIP=0x7c9010f3, EFLAGS=0x00010246
    Top of Stack: (sp=0x02f8f6e8)
    0x02f8f6e8: 6d0d9469 056bf00c 056beff8 00a0bc08
    0x02f8f6f8: 6d0d1218 00a701e5 0ad9eda0 00a0bb48
    0x02f8f708: 00000000 00000000 02f8f6fc 02f8f838
    0x02f8f718: 6d0f5b2c 00000000 02f8f738 00cac480
    0x02f8f728: 00a0bc08 02f8f740 06f12780 02f8f740
    0x02f8f738: 02f8f758 00bf8a4a 06eeb5d8 00c8fd2d
    0x02f8f748: 06eec628 00a77769 02f8f750 2ab20648
    0x02f8f758: 02f8f76c 00ace580 06eeb5d8 2b390650
    Instructions: (pc=0x7c9010f3)
    0x7c9010e3: 24 00 00 00 00 90 90 90 90 90 8b 54 24 04 33 c0
    0x7c9010f3: ff 4a 08 75 26 89 42 0c f0 ff 4a 04 7d 03 c2 04
    Stack: [0x02e90000,0x02f90000), sp=0x02f8f6e8, free space=1021k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x10f3]
    J java.awt.Font.pDispose()V
    J java.awt.Font.finalize()V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x8c128]
    C [java.dll+0x2006]
    J java.lang.ref.Finalizer.runFinalizer()V
    J java.lang.ref.Finalizer$FinalizerThread.run()V
    v ~OSRAdapter
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J java.awt.Font.pDispose()V
    J java.awt.Font.finalize()V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    v ~StubRoutines::call_stub
    J java.lang.ref.Finalizer.invokeFinalizeMethod(Ljava/lang/Object;)V
    J java.lang.ref.Finalizer.runFinalizer()V
    J java.lang.ref.Finalizer$FinalizerThread.run()V
    v ~OSRAdapter
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00357ec0 JavaThread "DestroyJavaVM" [_thread_blocked, id=7316]
    0x05519a90 JavaThread "AWT-EventQueue-1" [_thread_in_native, id=30548]
    0x03567ce8 JavaThread "TimerQueue" daemon [_thread_blocked, id=10732]
    0x0349c4d8 JavaThread "OutputFileMonitor" [_thread_blocked, id=14032]
    0x033d8e18 JavaThread "AWT-Shutdown" [_thread_blocked, id=14920]
    0x03493028 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5204]
    0x034921b0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=14556]
    0x00a12d10 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1248]
    0x00a118f8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=9736]
    0x00a10c98 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=15052]
    =>0x00a0bb48 JavaThread "Finalizer" daemon [_thread_in_native, id=13988]
    0x00a0a780 JavaThread "Reference Handler" daemon [_thread_blocked, id=13108]
    Other Threads:
    0x00a08e28 VMThread [id=14484]
    0x00a13f28 WatcherThread [id=11932]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 4416K, used 519K [0x06a70000, 0x06f30000, 0x091d0000)
    eden space 3968K, 1% used [0x06a70000, 0x06a81c18, 0x06e50000)
    from space 448K, 100% used [0x06ec0000, 0x06f30000, 0x06f30000)
    to space 448K, 0% used [0x06e50000, 0x06e50000, 0x06ec0000)
    tenured generation total 58116K, used 34480K [0x091d0000, 0x0ca91000, 0x26a70000)
    the space 58116K, 59% used [0x091d0000, 0x0b37c0b8, 0x0b37c200, 0x0ca91000)
    compacting perm gen total 8192K, used 6278K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 76% used [0x26a70000, 0x27091910, 0x27091a00, 0x27270000)
    ro space 8192K, 63% used [0x2aa70000, 0x2af7d860, 0x2af7da00, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b810728, 0x2b810800, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\mb\Jre\jre_1.5.0-09\bin\javaw.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d6c0000 - 0x6d85b000      C:\mb\Jre\jre_1.5.0-09\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d280000 - 0x6d288000      C:\mb\Jre\jre_1.5.0-09\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d690000 - 0x6d69c000      C:\mb\Jre\jre_1.5.0-09\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\mb\Jre\jre_1.5.0-09\bin\java.dll
    0x6d6b0000 - 0x6d6bf000      C:\mb\Jre\jre_1.5.0-09\bin\zip.dll
    0x6d000000 - 0x6d169000      C:\mb\Jre\jre_1.5.0-09\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x03790000 - 0x038ff000      C:\WINDOWS\system32\nview.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\COMCTL32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x77690000 - 0x776b1000      C:\WINDOWS\system32\NTMARTA.DLL
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\system32\SAMLIB.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x6d240000 - 0x6d27f000      C:\mb\Jre\jre_1.5.0-09\bin\fontmanager.dll
    0x6d3c0000 - 0x6d3df000      C:\mb\Jre\jre_1.5.0-09\bin\jpeg.dll
    0x03d50000 - 0x03d65000      C:\WINDOWS\system32\nvwddi.dll
    0x04120000 - 0x048b0000      C:\mb\Ucam801\bin\ucam.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x03f80000 - 0x03fa5000      C:\WINDOWS\system32\IBFS32.DLL
    0x6d4c0000 - 0x6d4d3000      C:\mb\Jre\jre_1.5.0-09\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\mb\Jre\jre_1.5.0-09\bin\nio.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x74290000 - 0x74294000      C:\WINDOWS\system32\icmp.Dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\Apphelp.dll
    0x71b20000 - 0x71b32000      C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000      C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000      C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000      C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000      C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000      C:\WINDOWS\System32\NETRAP.dll
    0x75f70000 - 0x75f79000      C:\WINDOWS\System32\davclnt.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x04c30000 - 0x04cb5000      C:\Program Files\Nokia\Nokia PC Suite 6\PhoneBrowser.dll
    0x04cc0000 - 0x04d4c000      C:\Program Files\Nokia\Nokia PC Suite 6\PCSCM.dll
    0x04d50000 - 0x04d8f000      C:\WINDOWS\system32\ConnAPI.DLL
    0x7c3a0000 - 0x7c41b000      C:\WINDOWS\system32\MSVCP71.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\MSIMG32.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x77260000 - 0x77300000      C:\WINDOWS\system32\urlmon.dll
    0x771b0000 - 0x77259000      C:\WINDOWS\system32\WININET.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x04ec0000 - 0x04eca000      C:\Program Files\Nokia\Nokia PC Suite 6\Lang\PhoneBrowser_eng.nlr
    0x04f50000 - 0x04fdb000      C:\Program Files\Nokia\Nokia PC Suite 6\Resource\PhoneBrowser_Nokia.ngr
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x04fe0000 - 0x05059000      C:\WINDOWS\system32\Audiodev.dll
    0x05060000 - 0x052a4000      C:\WINDOWS\system32\WMVCore.DLL
    0x04ed0000 - 0x04f0b000      C:\WINDOWS\system32\WMASF.DLL
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x76980000 - 0x76988000      C:\WINDOWS\system32\LINKINFO.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x76400000 - 0x765a6000      C:\WINDOWS\system32\NETSHELL.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x76c00000 - 0x76c2e000      C:\WINDOWS\system32\credui.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x058d0000 - 0x05913000      C:\Program Files\Microsoft Private Folder 1.0\ShellExt.dll
    0x05930000 - 0x05953000      C:\WINDOWS\system32\PFLib.dll
    0x4ffe0000 - 0x4ffe8000      C:\WINDOWS\system32\FLTLIB.DLL
    0x05990000 - 0x05c55000      C:\WINDOWS\system32\xpsp2res.dll
    0x767a0000 - 0x767d6000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\UNIDRVUI.DLL
    0x767e0000 - 0x76825000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\UNIDRV.DLL
    0x2d4e0000 - 0x2d6d9000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\HPBF222E.DLL
    0x6e680000 - 0x6e6bb000      C:\WINDOWS\system32\COMPSTUI.dll
    0x2dae0000 - 0x2dc64000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\HPBF222G.DLL
    0x6c600000 - 0x6c84b000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634U.DLL
    0x68f00000 - 0x68f33000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634C.DLL
    0x6c500000 - 0x6c519000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634L.DLL
    0x68500000 - 0x6853a000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634X.DLL
    0x6e000000 - 0x6e006000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634ZU.DLL
    0x6e030000 - 0x6e048000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634WU.DLL
    0x04a70000 - 0x04aa4000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634K.DLL
    0x04ab0000 - 0x04ad1000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634P.DLL
    0x03d40000 - 0x03d4e000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634J.DLL
    0x68d00000 - 0x68d09000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634ZK.DLL
    0x04ae0000 - 0x04ae5000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\NRG634WK.DLL
    0x04af0000 - 0x04af7000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\2\hpblff0.dll
    0x2ed70000 - 0x2ede3000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\2\HPBLFF7.dll
    0x04b00000 - 0x04b11000      C:\WINDOWS\system32\MSVCIRT.dll
    0x2edf0000 - 0x2eef1000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\2\HPBLFF3.DLL
    0x06a30000 - 0x06a4c000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\2\HPBLFF1.DLL
    0x6a900000 - 0x6a9c0000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\win2pdfi.dll
    0x2ef00000 - 0x2ef62000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\win2pdf.dll
    0x2ef70000 - 0x2ef99000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\FXSUI.DLL
    0x71550000 - 0x7156f000      C:\WINDOWS\system32\ACLUI.dll
    0x5a980000 - 0x5a9f2000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\FXSAPI.dll
    0x68eb0000 - 0x68eb6000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\FXSRES.dll
    0x5a8b0000 - 0x5a8e2000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\FXSWZRD.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x68d30000 - 0x68d94000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\FXSTIFF.dll
    0x68f40000 - 0x68f4a000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\FXSDRV.DLL
    0x6d1c0000 - 0x6d1e3000      C:\mb\Jre\jre_1.5.0-09\bin\dcpr.dll
    VM Arguments:
    jvm_args: -Dsun.java2d.d3d=false -Dsun.java2d.noddraw=true -Dswing.useSystemFontSettings=false -Xverify:none -Xss256k -Xmx512m
    java_command: Ucam -unit=mil
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\j2sdk1.4.2_10\bin
    PATH=C:\mb\Ucam801\autofixture\bin;C:\mb\Ucam801\autofixture\Perl\bin;C:\mb\Ucam801\autofixture\Tcl\bin;C:\mb\Ucam801\flexlm;C:\mb\Ucam801\bin;C:\PXPerl\parrot\bin;C:\PXPerl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdk1.4.2_10\bin;"\";C:\Program Files\Support Tools;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\bin;C:\usr\local\bin;C:\PROGRA~1\VISION;C:\PROGRA~1\VISION\System;C:\PROGRA~1\COMMON~1\VISION;"C:\Program Files\IGC\DWG Viewer";C:\Program Files\ActiveState Komodo 3.0\
    USERNAME=alan.coombes
    DISPLAY=:0.0
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 6 model 13 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047960k(259748k free), swap 2518916k(1618112k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_09-b03) for windows-x86, built on Oct 12 2006 01:20:10 by "java_re" with MS VC++ 6.0
    Using jre1.6.0 the text looks much better and 35 paint calls for the same page. The text loks a bit stange as there very little space between some of the characters. Im stuck with using 1.5 for the moment.

  • Java code statistics analysis

    Hi,
    I see some product that use "java code statistics analysis" in order to my JR programmer made program as SR programmer or as AP.
    I think that is better for my apps this tools.
    I think that this tool could make "robots" and could make that SR programmer to cash more money.
    I like see a Open Source tools.
    Please, what is your opinion ?

    (About "bad English": statistically English is decreasing.)
    Improving code quality is a good idea.
    Javadoc usage is a pre. Say what is intended, what the requirements are,
    what is problematic.
    Software metrics give information on the entire architecture. They are useful,
    as they provide insight in the architecture.
    The problem is the interpretation and treatment afterwards.
    So is connectivity in all its forms not something to be easily resolved, but important.
    And individual source evaluation can give an "error probability" which you can doctor from red to green again - without quality improvement. Indeed productivity may often reduce "quality" a bit.
    JR programmers can be usefull. The best to my experience is putting one or two JRs with a SR. This is called peer-to-peer management, and insures that code is checked afterwards.
    Code-reviews are the same thing.
    Designing software before coding, maybe though with prototypes, would be ideal, as one can talk about the code. The two dangers there are:
    - fright to perform in public;
    - discussing without sound basis: too abstract, and too long on side issues,
    not recognizying the crucial points.
    Try to minimalise the number of classes.
    Design separation, independent classes in independent package hierarchies. Avoid inheritance.
    UML is another way to talk about code.
    It is nice to have, but should not be given more weight than it has.
    Design patterns are a SR thing, but things like singletons, dependency injection, etcetera should be communicated as concepts, so another
    programmer can benefit from reading.
    I do not know how it is in your country; in Germany where I live, I have
    found, that especially the inexperienced have an almost arrogant attitude,
    the experienced are professionally friendly.
    Good communication and both freedom for creativity and reviewing/redesigning are a must.
    P.S.
    The commercial MyEclipse has some of the things you want.
    Open source solutions should also exist.

  • Clean Java Code No SQL

    Has anyone concidered putting all SQL outside the java source code. A properties file seems rather limited so why not xml?
    My goal for posting this topic is to have the JDBC community provide input and suggestions for the given scenario.
    A java app performs a certain task involving a DB the application is ported to another environment and the DB changes and the SQL for the action changes.
    How would you define the SQL outside of the code and how would the java code interpret it, including SQL that is dynamically build using class properties or return values from class methods.
    Thanks for reading this,
    Phil

    upsidedown7 said
    in other words, in about 15 meta data tables,
    you enter your logical data model,
    and click which field(s) to search on, and with is
    editable, the user, and user groups, and it
    builds the application for you.And if one really wants to get away from the advantages of using a database one can use a OO database. Supposedly POET allows one to use any backend database (or at least Oracle and MS SQL Server.) So one doesn't even need to deal with tables or fields. It is all just objects.
    It is always helpful to actually code a database from scratch. Doing so makes it obvious that a database needs to keep track of tables, and table names, and fields and field names and field types, etc. That is all 'meta-data'.
    It makes it more obvious that creating meta data is just duplicating what a database already does.
    And once one starts using a database to store meta-data and to store data in a form that is not consistent with the database model, one looses all advantages associated with a database. Like speed. Like seperation of the data model from the implementation model. Like allowing for different data striping models, archiving models and a slew of other useful tools that have come from 50 years of database technology.
    And then there is migration. Add one field to your model for version 2 and now you have load the entire database in to memory, restructure the data model, and then lay that data back down. A chore that takes a couple of minutes or less in SQL using a relational layout can require a dedicate programmer several weeks to program and can take 12 hours to run on a client side only system (and be impossible on a server side system.)
    Have you ever wondered why OO databases have not taken over the world even though they have been around for more than 10 years. Java didn't even exist when the first OO databases were already in the 2nd generation. And yet there is almost no market for them.
    Consider how many languages, and process control models have been implemented and discarded in the last 50 years. And yet the relational model is stronger than ever. There has to be a reason.
    i have moved all my users to using only
    UPPERCASE data. since i have a rule of
    no stored proceedures and triggers in my db's.And that is a good thing?
    What does that have to do with stored procs?
    using this, we were able to port a single application
    to SQL Server 7, DB anywhere, and Oracle 8i in
    4 days. the application had 121 tables. we had
    a slight problem with dates, but we hammered that
    out.The vast majority of applications will never use a different database. When they do it will be a complete switch.
    Will your method work with 8000 tables (as someone suggested on this forum that they were running?)
    At one company I worked for a single table contained something like 100 million rows (actually for performance reasons we had to break it into 3 tables as archived by date.)
    Will your method work with 100 million rows? That database was 250 gigs and was growing at a rate of 400 meg a day. And they were planing on doubling that rate (and one estimate put it up to 10 times.) How long would it take to store 400,000 rows, every day, using your method? How long would it take to do the accumlation reports that could easily touch 30 million records?
    This isn't to say that your solution isn't correct for your application. If the fields (not the data but the fields) change constantly day to day and your users can get by with the other constraints you have made then it is a good solution.
    But as a general solution I would guess it has some serious flaws. And I for one would never want to handle the migration issue.

Maybe you are looking for

  • USB device (1 day old nano) has malfunctioned & windows does not recognize

    Please can someone help a non-tech savy new ipod user. I have loaded the latest itunes, but not only does itunes not see my ipod, I get the following windows error when I plug it in. "One of the USB devices attached to this computer has malfunctioned

  • Ora-25153    - temporary-tablespace-is-empty-error-in-oracle/

    I get this error after I run my stored procedure.Surprisingly I expec this kind of error before one record could be inserted into any table in the DB. In my stored procedure , a) I first insert a record in a table and then do a insert select count(*)

  • How can I copy texts from my phone to my computer

    I have an LG VN251 phone with Verizon Wireless. My ex is filling up my text mailbox and I do not want to delete them because frankly I might need them as evidence if I have to involve authorities to get her to stop contacting me. How can I save or co

  • [solved] OpenGL apps in window do not obey window manager

    Hello, I have another X related problem, the first one resulted in downgrading my X (see http://bbs.archlinux.org/viewtopic.php?id=44460 ) Now I am finally able to run both xv (video rendering) and dri (3d rendering), but I have a problem, that when

  • Already bought quicktime pro but still running without the pro options

    Hello. I have already bought quicktime pro but after I had to reinstall it is running again without the pro options. I logged into apple.com and there is nowhere where I can find my actualisation or key code which I have paid for to make it run as pr