Pop3 in java, need a bug clearance

import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;
import java.io.*;
class mailx
public static void main(String args[])throws Exception
Properties myprop=new Properties();
try
Session mailConnection=Session.getDefaultInstance(myprop,null);
Store mystore=mailConnection.getStore("pop3");
mystore.connect("pop3.gmail.com","xzxzxzxxz","xzxzxzxzxzx");
Folder inbox=mystore.getFolder("INBOX");
if(inbox==null)
System.out.println("Not avail");
System.exit(1);
inbox.open(Folder.READ_ONLY);
Message[] msg=inbox.getMessages();
for(int i=0;i<msg.length;i++)
System.out.println("Msg"+(i+1));
msg.writeTo(System.out);
inbox.close(false);
mystore.close();
catch(Exception ex)
System.out.println("Error occured: "+ex.getMessage());
when i execute this code, there arises an error showing "Connection error". what might be the error? somebody pls help me                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

E:\java>java mailx
javax.mail.MessagingException: Connect failed;
nested exception is:
java.io.IOException: Connect failed
at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:160)
at javax.mail.Service.connect(Service.java:291)
at javax.mail.Service.connect(Service.java:172)
at mailx.main(mail.java:15)
Caused by: java.io.IOException: Connect failed
at com.sun.mail.pop3.Protocol.<init>(Protocol.java:114)
at com.sun.mail.pop3.POP3Store.getPort(POP3Store.java:213)
at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:156)
... 3 more
this is the output i am getting. what do i have to do now?

Similar Messages

  • �� I have a java applet program (yanhua.java) need help!!!

    �� I have a java applet program (yanhua.java) that use mouse click a area show a fireworks, the applet program that a java fan mail me. Now i find some bug in the program, can you help me? thank in advance!
    The backdrop of the question: The yanhua.java applet program works well. But one day, i install j2re 1.4.1 plugin for my microsfot Internet Explorer, i run the yanhua.java applet program again, it show difficult(i move my mouse in the area, slowness), the fireworks is not fluent. Then i try my best to find the cause , i get some information, the following: yanhua.java run in j2re 1.4.1 plugin,it will deplete 100% cpu; else yanhua.java does not run in j2re 1.4.1 plugin, it will deplete 90%--95% cpu too; but my computer c3 1G cpu and 256MB memory, without running other program at that time. So i can have the assurance to say that the yanhua.java have some bug or error. can you help me to find all bug in yanhua.java? thank you very much!!!
    i want to solve the question: finding all bug in yanhua.java
    NOTE:
    1��fireworks show specially good effect(a yanhua.java applet) you can look at:
    http://www.3ren.net/down/java/yanhua.html
    2��all program you can get from http://www.3ren.net/down/java/yanhua.rar
    /*************************yanhua.java******************************
    import java.applet.Applet;
    import java.applet.AudioClip;
    import java.awt.*;
    import java.awt.image.MemoryImageSource;
    import java.util.Random;
    public class yanhua extends Applet
    implements Runnable
    private int m_nAppX;
    private int m_nAppY;
    private int m_centerX;
    private int m_centerY;
    private int m_mouseX;
    private int m_mouseY;
    private int m_sleepTime;
    private boolean isError;
    private boolean m_isPaintFinished;
    boolean isRunning;
    boolean isInitialized;
    Thread runner;
    int pix0[];
    MemoryImageSource offImage;
    Image dbImg;
    int pixls;
    int pixls2;
    Random rand;
    int bits;
    double bit_px[];
    double bit_py[];
    double bit_vx[];
    double bit_vy[];
    int bit_sx[];
    int bit_sy[];
    int bit_l[];
    int bit_f[];
    int bit_p[];
    int bit_c[];
    int bit_max;
    int bit_sound;
    int ru;
    int rv;
    AudioClip sound1;
    AudioClip sound2;
    public yanhua()
    m_mouseX = 0;
    m_mouseY = 0;
    m_sleepTime = 5;
    isError = false;
    isInitialized = false;
    rand = new Random();
    bits = 10000;
    bit_px = new double[bits];
    bit_py = new double[bits];
    bit_vx = new double[bits];
    bit_vy = new double[bits];
    bit_sx = new int[bits];
    bit_sy = new int[bits];
    bit_l = new int[bits];
    bit_f = new int[bits];
    bit_p = new int[bits];
    bit_c = new int[bits];
    ru = 50;
    rv = 50;
    public void init()
    String s = getParameter("para_bits");
    if(s != null)
    bits = Integer.parseInt(s);
    s = getParameter("para_max");
    if(s != null)
    bit_max = Integer.parseInt(s);
    s = getParameter("para_blendx");
    if(s != null)
    ru = Integer.parseInt(s);
    s = getParameter("para_blendy");
    if(s != null)
    rv = Integer.parseInt(s);
    s = getParameter("para_sound");
    if(s != null)
    bit_sound = Integer.parseInt(s);
    m_nAppX = this.getSize().width;
    m_nAppY = this.getSize().height;
    m_centerX = m_nAppX / 2;
    m_centerY = m_nAppY / 2;
    m_mouseX = m_centerX;
    m_mouseY = m_centerY;
    resize(m_nAppX, m_nAppY);
    pixls = m_nAppX * m_nAppY;
    pixls2 = pixls - m_nAppX * 2;
    pix0 = new int[pixls];
    offImage = new MemoryImageSource(m_nAppX, m_nAppY, pix0, 0, m_nAppX);
    offImage.setAnimated(true);
    dbImg = createImage(offImage);
    for(int i = 0; i < pixls; i++)
    pix0[i] = 0xff000000;
    sound1 = getAudioClip(getDocumentBase(), "firework.au");
    sound2 = getAudioClip(getDocumentBase(), "syu.au");
    for(int j = 0; j < bits; j++)
    bit_f[j] = 0;
    isInitialized = true;
    start();
    public void run()
    while(!isInitialized)
    try
    Thread.sleep(200L);
    catch(InterruptedException interruptedexception) { }
    do
    for(int j = 0; j < pixls2; j++)
    int k = pix0[j];
    int l = pix0[j + 1];
    int i1 = pix0[j + m_nAppX];
    int j1 = pix0[j + m_nAppX + 1];
    int i = (k & 0xff0000) >> 16;
    int k1 = ((((l & 0xff0000) >> 16) - i) * ru >> 8) + i;
    i = (k & 0xff00) >> 8;
    int l1 = ((((l & 0xff00) >> 8) - i) * ru >> 8) + i;
    i = k & 0xff;
    int i2 = (((l & 0xff) - i) * ru >> 8) + i;
    i = (i1 & 0xff0000) >> 16;
    int j2 = ((((j1 & 0xff0000) >> 16) - i) * ru >> 8) + i;
    i = (i1 & 0xff00) >> 8;
    int k2 = ((((j1 & 0xff00) >> 8) - i) * ru >> 8) + i;
    i = i1 & 0xff;
    int l2 = (((j1 & 0xff) - i) * ru >> 8) + i;
    int i3 = ((j2 - k1) * rv >> 8) + k1;
    int j3 = ((k2 - l1) * rv >> 8) + l1;
    int k3 = ((l2 - i2) * rv >> 8) + i2;
    pix0[j] = i3 << 16 | j3 << 8 | k3 | 0xff000000;
    rend();
    offImage.newPixels(0, 0, m_nAppX, m_nAppY);
    try
    Thread.sleep(m_sleepTime);
    catch(InterruptedException interruptedexception1) { }
    } while(true);
    public void update(Graphics g)
    paint(g);
    public void paint(Graphics g)
    g.drawImage(dbImg, 0, 0, this);
    public void start()
    if(isError)
    return;
    isRunning = true;
    if(runner == null)
    runner = new Thread(this);
    runner.start();
    public void stop()
    if(runner != null)
    runner.stop();
    runner = null;
    public boolean mouseMove(Event event, int i, int j)
    m_mouseX = i;
    m_mouseY = j;
    return true;
    public boolean mouseDown(Event event, int i, int j)
    m_mouseX = i;
    m_mouseY = j;
    int k = (int)(rand.nextDouble() * 256D);
    int l = (int)(rand.nextDouble() * 256D);
    int i1 = (int)(rand.nextDouble() * 256D);
    int j1 = k << 16 | l << 8 | i1 | 0xff000000;
    int k1 = 0;
    for(int l1 = 0; l1 < bits; l1++)
    if(bit_f[l1] != 0)
    continue;
    bit_px[l1] = m_mouseX;
    bit_py[l1] = m_mouseY;
    double d = rand.nextDouble() * 6.2800000000000002D;
    double d1 = rand.nextDouble();
    bit_vx[l1] = Math.sin(d) * d1;
    bit_vy[l1] = Math.cos(d) * d1;
    bit_l[l1] = (int)(rand.nextDouble() * 100D) + 100;
    bit_p[l1] = (int)(rand.nextDouble() * 3D);
    bit_c[l1] = j1;
    bit_sx[l1] = m_mouseX;
    bit_sy[l1] = m_nAppY - 5;
    bit_f[l1] = 2;
    if(++k1 == bit_max)
    break;
    if(bit_sound > 1)
    sound2.play();
    return true;
    public boolean mouseExit(Event event, int i, int j)
    m_mouseX = i;
    m_mouseY = j;
    return true;
    void rend()
    boolean flag = false;
    boolean flag1 = false;
    boolean flag2 = false;
    for(int k = 0; k < bits; k++)
    switch(bit_f[k])
    default:
    break;
    case 1: // '\001'
    bit_vy[k] += rand.nextDouble() / 50D;
    bit_px[k] += bit_vx[k];
    bit_py[k] += bit_vy[k];
    bit_l[k]--;
    if(bit_l[k] == 0 || bit_px[k] < 0.0D || bit_py[k] < 0.0D || bit_px[k] > (double)m_nAppX || bit_py[k] > (double)(m_nAppY - 3))
    bit_c[k] = 0xff000000;
    bit_f[k] = 0;
    } else
    if(bit_p[k] == 0)
    if((int)(rand.nextDouble() * 2D) == 0)
    bit_set((int)bit_px[k], (int)bit_py[k], -1);
    } else
    bit_set((int)bit_px[k], (int)bit_py[k], bit_c[k]);
    break;
    case 2: // '\002'
    bit_sy[k] -= 5;
    if((double)bit_sy[k] <= bit_py[k])
    bit_f[k] = 1;
    flag2 = true;
    if((int)(rand.nextDouble() * 20D) == 0)
    int i = (int)(rand.nextDouble() * 2D);
    int j = (int)(rand.nextDouble() * 5D);
    bit_set(bit_sx[k] + i, bit_sy[k] + j, -1);
    break;
    if(flag2 && bit_sound > 0)
    sound1.play();
    void bit_set(int i, int j, int k)
    int l = i + j * m_nAppX;
    pix0[l] = k;
    /*********************************end*******************************

    no one help me???????????

  • The system variables in java, NEEDED ONLY at CLI execution of java programs

    The system variables in java, NEEDED ONLY at CLI execution of java programs, and NOT needed at all[essentially] if I install bundle(14+6.7)?
    if I install bundle(14+6.7) to run-test a web app with netbeans 6.7 what I must press, then opens the default browser? I have to be online,...? How I test browse my project?

    Probably a complete tutorial on all possible environment variables in addition to a tutorial on netbeans configuration.

  • HT204210 Still nothing about File Vault that needs a bug fix for almost every user. This is becoming even more disappointing!

    Still nothing about File Vault that needs a bug fix for almost every user. This is becoming even more disappointing!

    Apple Enterprise Support is aware of this issue. They have specific instructions which attempt to remediate the issue, however, attempting on two different MBP laptops, so far has not succeeded.
    The problem to be specific is - hang at login. The Filevaulted user account gets its password entered, then the "progress bar" mid screen will be seen to halt, never resuming. NVRAM resets dont necessarily cure this issue, but turning off FV2 definitely does.
    We are seeing this with 10.10.2 fully Apple-SUS updated machines.
    Feedback has been sent to Apple over this as well.
    Im recommending:
    a. turn off FV2 until such time as a Apple provided update cures it
    b. consider the Sophos WDE solution if WDE is absolutely required (disclosure: I havent attempted this, not sure about its workability)

  • Only 274 mails are coming when using pop3 with java mail

    Only 274 mails are coming from GMAIL when using pop3 with java mail. but there are more than 3000 mails.
    I'm not getting the reason, code is given below:
    public static void main(String[] args) {
            // SUBSTITUTE YOUR ISP's POP3 SERVER HERE!!!
    //        String host = "pop.bizmail.yahoo.com";
    //        final String user = "[email protected]";
    //        final String password = "xxx";
            String host = "pop.gmail.com";
            final String user = "gauravjlj";
            final String password = "xxx";
            String subjectSubstringToSearch = "Test E-Mail through Java";
            try {
                 Properties prop = new Properties();
                prop.setProperty("mail.pop3.socketFactory.class",
                                            "javax.net.ssl.SSLSocketFactory");
                prop.setProperty("mail.pop3.socketFactory.fallback", "false");
                prop.setProperty("mail.pop3.port", "995");
                prop.setProperty("mail.pop3.socketFactory.port", "995");
                prop.put("mail.pop3.host", host);
                prop.put("mail.store.protocol", "pop3");
                Session session = Session.getDefaultInstance(prop);
                Store store = session.getStore();
                System.out.println("your ID is : "+ user);
                System.out.println("Connecting...");
                store.connect(host, user, password);
                System.out.println("Connected...");
                // Get "INBOX"
                Folder fldr = store.getFolder("INBOX");
                fldr.open(Folder.READ_ONLY);
                int count = fldr.getMessageCount();
                System.out.println(count  + " total messages");
                // Message numebers start at 1
                for(int i = 1; i <= count; i++) {
                                            // Get  a message by its sequence number
                    Message m = fldr.getMessage(i);
                    // Get some headers
                    Date date = m.getSentDate();
                    Address [] from = m.getFrom();
                    String subj = m.getSubject();
                    String mimeType = m.getContentType();
                    System.out.println(date + "\t" + from[0] + "\t" +
                                        subj + "\t" + mimeType);
                // Search for e-mails by some subject substring
                String pattern = subjectSubstringToSearch;
                SubjectTerm st = new SubjectTerm(pattern);
                // Get some message references
                Message [] found = fldr.search(st);
                System.out.println(found.length +
                                    " messages matched Subject pattern \"" +
                                    pattern + "\"");
                for (int i = 0; i < found.length; i++) {
                    Message m = found;
    // Get some headers
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    System.out.println(date + "\t" + from[0] + "\t" +
    subj + "\t" + mimeType);
    Object o = m.getContent();
    if (o instanceof String) {
    System.out.println("**This is a String Message**");
    System.out.println((String)o);
    else if (o instanceof Multipart) {
    System.out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
    System.out.println("It has " + count3 +
    " BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    // Part are numbered starting at 0
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
    System.out.println( "BodyPart " + (j + 1) +
    " is of MimeType " + mimeType);
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    System.out.println("**This is a String BodyPart**");
    System.out.println((String)o2);
    else if (o2 instanceof Multipart) {
    System.out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
    System.out.println("It has " + count2 +
    "further BodyParts in it**");
    else if (o2 instanceof InputStream) {
    System.out.println(
    "**This is an InputStream BodyPart**");
    } //End of for
    else if (o instanceof InputStream) {
    System.out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    // Assumes character content (not binary images)
    int c;
    while ((c = is.read()) != -1) {
    System.out.write(c);
    // Uncomment to set "delete" flag on the message
    //m.setFlag(Flags.Flag.DELETED,true);
    } //End of for
    // "true" actually deletes flagged messages from folder
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    Please tell me.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Is it possible that GMail only allows access to untagged emails via POP3? Or only to emails from the last x days?
    POP3 is the older email retrieval protocol (IMAP4 is the more current one) and only has very limited support for folders (or anything but a single inbox, really). It's quite common that POP3 only allows access to a subset of all emails stored by a provider.

  • Is the Java "Zero-Day" bug dangerous for MountainLion users?

    Is the Java "Zero-Day" bug dangerous for MountainLion users?

    It is not yet dangerous, to my knowledge, as it is currently being used only to distribute Windows malware. But users of Java 7 are certainly vulnerable, should a hacker start distributing Mac malware through this vulnerability.
    For more info, see:
    http://www.reedcorner.net/new-unpatched-java-vulnerability-discovered/

  • ANOTHER Java NIO Socket Bug??

    I think I'm being really dense here but for the life of me, I can't get this code to work properly. I am trying to build a NIO socket server using JDK 1.4.1-b21. I know about how the selector OP_WRITE functionality has changed and that isn't my problem. My problem is that when I run this code:
    if (key.isAcceptable()) {
         System.out.println("accept at " + System.currentTimeMillis());
         socket = server.accept();
         socket.configureBlocking(false);
         socket.register(selector, SelectionKey.OP_READ | SelectionKey.OP_WRITE);
    if (key.isWritable()) {
         SocketChannel client = (SocketChannel)key.channel();
         System.out.println("write at " + System.currentTimeMillis());
    if (key.isReadable()) {
         SocketChannel client = (SocketChannel)key.channel();
         readBuffer.clear();
         client.read(readBuffer);
         System.out.println("read at " + System.currentTimeMillis());
    }the isWritable if statement will always return (which is fine) and the isReadable if statement will NEVER return (which is most certainly NOT FINE!!). The readBuffer code is there just to clear out the read buffer so isReadable is only called once per data sent.
    This SEEMS to be a bug in how the selector works? I would expect to see isReadable return true whenever data is sent, but that is not the case. Now here is the real kicker ;) Go ahead and change this line:
    socket.register(selector, SelectionKey.OP_READ | SelectionKey.OP_WRITE);to this:socket.register(selector, SelectionKey.OP_READ);And now it appears that isReadable is running as expected?! To let people run this code on their own, I have uploaded a copy of the entire java file here:
    http://www.electrotank.com/lab/personal/mike/NioTest.java
    Please forgive the code, it's just the smallest test harness I could make and much of it is lifted from other posts on this forum. You can test this by using Telnet and connecting to 127.0.0.1:8080. You can test the isReadable piece by just typing in the Telnet window.
    Someone else has listed something as a bug in the Bug Parade, but the test case is flawed:
    http://developer.java.sun.com/developer/bugParade/bugs/4755720.html
    If this does prove to be a bug, has someone listed this already? Is there a nice clean workaround? I'm getting really desperate here. This bug makes the NIO socket stuff pretty unusable. Thanks in advance for the help!!
    Mike Grundvig
    [email protected]
    Electrotank, Inc.

    Yeah, isReadable crashed for me too.
    My solution was to not call it. I set up two selectors for the two operations I wanted notifying (accept and read) and used them independently in different threads. The accept thread passes them over to the read thread when they're accepted.
    This way I don't need to call isReadable since it is bound to be readable otherwise it wouldn't have returned, as read is the only operation I'm being notified about.
    --sam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • JAVA or LINUX bug?

    My Java program crashes (on a Linux system) with the following log:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x4c949182, pid=2672, tid=2981530512
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_12-b04 mixed mode, sharing)
    # Problematic frame:
    # C [libc.so.6+0x68182]
    Is this a bug in my Java code, JVM or the Linux system?
    I am not sure, but i would say that any bug in my Java Code would give me an exception ERROR not a SIGSEGV.
    As it is a segmentation fault error it probably is JVM or Linux?
    Does anyone know?
    //Paul

    Hi!
    From what i have seen in the err-logs the crash is always in libc. When i look into the stack trace i can see that
    there has always been a malloc or calloc (2'nd or 3'rd pos in stack trace) just before the crash.
    I run Fedora 7. But i have the same problem when trying it on FC8 too.
    Here is the complete error log:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  SIGSEGV (0xb) at pc=0x4c949182, pid=2672, tid=2981530512
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_12-b04 mixed mode, sharing)
    # Problematic frame:
    # C  [libc.so.6+0x68182]
    ---------------  T H R E A D  ---------------
    Current thread (0x08f229f0):  JavaThread "AWT-XAWT" daemon [_thread_in_vm, id=2681]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x0000000a
    Registers:
    EAX=0x4ca32150, EBX=0x4ca30ff4, ECX=0x4ca32120, EDX=0x08f42758
    ESP=0xb1b67c50, EBP=0xb1b67cf8, ESI=0x00000060, EDI=0x00000002
    EIP=0x4c949182, CR2=0x0000000a, EFLAGS=0x00210202
    Top of Stack: (sp=0xb1b67c50)
    0xb1b67c50:   4cc8f361 08f18c30 b7b4442c 9138ccc0
    0xb1b67c60:   08f229f0 b1b67c94 b7a37986 08f18c34
    0xb1b67c70:   4ca324a0 b1b67ce3 08f229f0 000001d5
    0xb1b67c80:   4ca32150 b1b67db4 b7b4442c 00000068
    0xb1b67c90:   08f229f0 b1b67d14 00000002 9138ccc8
    0xb1b67ca0:   00000000 00000001 08f229f0 08f22d88
    0xb1b67cb0:   b7b4442c 00000000 b1b67d78 b7a4684e
    0xb1b67cc0:   08f22da0 08f22d88 08f42758 00000010
    Instructions: (pc=0x4c949182)
    0x4c949172:   88 0f 84 16 01 00 00 8b 45 88 39 75 94 89 78 0c
    0x4c949182:   89 47 08 0f 84 05 03 00 00 81 fe ff 01 00 00 0f
    Stack: [0xb1ae8000,0xb1b69000),  sp=0xb1b67c50,  free space=511k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [libc.so.6+0x68182]
    C  [libc.so.6+0x69ebe]  __libc_malloc+0x7e
    V  [libjvm.so+0x28a3fa]
    V  [libjvm.so+0x315af7]
    j  sun.misc.Unsafe.allocateMemory(J)J+0
    j  sun.awt.X11.XEvent.<init>()V+28
    j  sun.awt.X11.XToolkit.getCurrentServerTime()J+83
    j  sun.awt.X11.XToolkit.nowMillisUTC_offset(J)J+91
    j  sun.awt.X11.XWindow.handleMotionNotify(J)V+128
    j  sun.awt.X11.XBaseWindow.dispatchEvent(Lsun/awt/X11/XAnyEvent;)V+220
    j  sun.awt.X11.XBaseWindow.dispatchToWindow(Lsun/awt/X11/XAnyEvent;)V+29
    j  sun.awt.X11.XToolkit.dispatchEvent(Lsun/awt/X11/XAnyEvent;)V+1
    J  sun.awt.X11.XToolkit.run(Z)V
    v  ~OSRAdapter
    j  sun.awt.X11.XToolkit.run()V+5
    j  java.lang.Thread.run()V+11
    v  ~StubRoutines::call_stub
    V  [libjvm.so+0x17b19c]
    V  [libjvm.so+0x28fb38]
    V  [libjvm.so+0x17a9f5]
    V  [libjvm.so+0x17aa8e]
    V  [libjvm.so+0x1f29f5]
    V  [libjvm.so+0x2f93d3]
    V  [libjvm.so+0x290748]
    C  [libpthread.so.0+0x544b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  sun.misc.Unsafe.allocateMemory(J)J+0
    j  sun.awt.X11.XEvent.<init>()V+28
    j  sun.awt.X11.XToolkit.getCurrentServerTime()J+83
    j  sun.awt.X11.XToolkit.nowMillisUTC_offset(J)J+91
    j  sun.awt.X11.XWindow.handleMotionNotify(J)V+128
    j  sun.awt.X11.XBaseWindow.dispatchEvent(Lsun/awt/X11/XAnyEvent;)V+220
    j  sun.awt.X11.XBaseWindow.dispatchToWindow(Lsun/awt/X11/XAnyEvent;)V+29
    j  sun.awt.X11.XToolkit.dispatchEvent(Lsun/awt/X11/XAnyEvent;)V+1
    J  sun.awt.X11.XToolkit.run(Z)V
    v  ~OSRAdapter
    j  sun.awt.X11.XToolkit.run()V+5
    j  java.lang.Thread.run()V+11
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x08e77108 JavaThread "Thread-4" [_thread_in_native, id=2731]
      0x08deea10 JavaThread "DestroyJavaVM" [_thread_blocked, id=2672]
      0x090cecd0 JavaThread "Loop thread" [_thread_blocked, id=2723]
      0x090be460 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" [_thread_blocked, id=2719]
      0x090a3468 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" [_thread_blocked, id=2718]
      0x090bd7b0 JavaThread "Loop thread" [_thread_blocked, id=2717]
      0x090a2248 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" [_thread_blocked, id=2713]
      0x090a1450 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" [_thread_blocked, id=2712]
      0x090bcfe8 JavaThread "Loop thread" [_thread_blocked, id=2711]
      0x090a1058 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" [_thread_blocked, id=2707]
      0x0909ccf0 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" [_thread_blocked, id=2706]
      0x090a0ce8 JavaThread "Loop thread" [_thread_blocked, id=2705]
      0x08ff0df0 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" [_thread_blocked, id=2701]
      0x08fed9b8 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" [_thread_blocked, id=2700]
      0x08fdcd10 JavaThread "Loop thread" [_thread_blocked, id=2699]
      0x08ff2a70 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" [_thread_blocked, id=2695]
      0x08ead6c0 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" [_thread_blocked, id=2694]
      0x08ff2090 JavaThread "Loop thread" [_thread_blocked, id=2693]
      0x08e4f1e8 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" [_thread_blocked, id=2689]
      0x08e878c0 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" [_thread_blocked, id=2688]
      0x08f2da30 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2684]
      0x08f2c2c8 JavaThread "AWT-Shutdown" [_thread_blocked, id=2683]
      0x08f2cc70 JavaThread "TimerQueue" daemon [_thread_blocked, id=2682]
    =>0x08f229f0 JavaThread "AWT-XAWT" daemon [_thread_in_vm, id=2681]
      0x08f18028 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2680]
      0x08e37be8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2678]
      0x08e366d8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2677]
      0x08e35728 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2676]
      0x08e2fc30 JavaThread "Finalizer" daemon [_thread_blocked, id=2675]
      0x08e2dda8 JavaThread "Reference Handler" daemon [_thread_blocked, id=2674]
    Other Threads:
      0x08e2c968 VMThread [id=2673]
      0x08e391b0 WatcherThread [id=2679]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 1728K, used 930K [0x88b60000, 0x88d30000, 0x89040000)
      eden space 1600K,  50% used [0x88b60000, 0x88c28950, 0x88cf0000)
      from space 128K, 100% used [0x88d10000, 0x88d30000, 0x88d30000)
      to   space 128K,   0% used [0x88cf0000, 0x88cf0000, 0x88d10000)
    tenured generation   total 21068K, used 16657K [0x89040000, 0x8a4d3000, 0x8cb60000)
       the space 21068K,  79% used [0x89040000, 0x8a0844e0, 0x8a084600, 0x8a4d3000)
    compacting perm gen  total 8192K, used 2366K [0x8cb60000, 0x8d360000, 0x90b60000)
       the space 8192K,  28% used [0x8cb60000, 0x8cdafb30, 0x8cdafc00, 0x8d360000)
        ro space 8192K,  68% used [0x90b60000, 0x910e07a8, 0x910e0800, 0x91360000)
        rw space 12288K,  48% used [0x91360000, 0x9192b520, 0x9192b600, 0x91f60000)
    Dynamic libraries:
    08048000-08057000 r-xp 00000000 fd:00 1278110    /usr/java/jdk1.5.0_12/bin/java
    08057000-08059000 rwxp 0000e000 fd:00 1278110    /usr/java/jdk1.5.0_12/bin/java
    08deb000-090f1000 rwxp 08deb000 00:00 0
    4c8c2000-4c8dd000 r-xp 00000000 fd:00 1277987    /lib/ld-2.6.so
    4c8dd000-4c8de000 r-xp 0001a000 fd:00 1277987    /lib/ld-2.6.so
    4c8de000-4c8df000 rwxp 0001b000 fd:00 1277987    /lib/ld-2.6.so
    4c8e1000-4ca2f000 r-xp 00000000 fd:00 1278180    /lib/libc-2.6.so
    4ca2f000-4ca31000 r-xp 0014e000 fd:00 1278180    /lib/libc-2.6.so
    4ca31000-4ca32000 rwxp 00150000 fd:00 1278180    /lib/libc-2.6.so
    4ca32000-4ca35000 rwxp 4ca32000 00:00 0
    4ca37000-4ca5e000 r-xp 00000000 fd:00 1279203    /lib/libm-2.6.so
    4ca5e000-4ca5f000 r-xp 00026000 fd:00 1279203    /lib/libm-2.6.so
    4ca5f000-4ca60000 rwxp 00027000 fd:00 1279203    /lib/libm-2.6.so
    4ca62000-4ca65000 r-xp 00000000 fd:00 1279201    /lib/libdl-2.6.so
    4ca65000-4ca66000 r-xp 00002000 fd:00 1279201    /lib/libdl-2.6.so
    4ca66000-4ca67000 rwxp 00003000 fd:00 1279201    /lib/libdl-2.6.so
    4cb1f000-4cb24000 r-xp 00000000 fd:00 9576673    /usr/lib/libXdmcp.so.6.0.0
    4cb24000-4cb25000 rwxp 00004000 fd:00 9576673    /usr/lib/libXdmcp.so.6.0.0
    4cb27000-4cc25000 r-xp 00000000 fd:00 9572154    /usr/lib/libX11.so.6.2.0
    4cc25000-4cc29000 rwxp 000fe000 fd:00 9572154    /usr/lib/libX11.so.6.2.0
    4cc2b000-4cc2d000 r-xp 00000000 fd:00 9579207    /usr/lib/libXau.so.6.0.0
    4cc2d000-4cc2e000 rwxp 00001000 fd:00 9579207    /usr/lib/libXau.so.6.0.0
    4cc71000-4cc80000 r-xp 00000000 fd:00 9577025    /usr/lib/libXext.so.6.4.0
    4cc80000-4cc81000 rwxp 0000e000 fd:00 9577025    /usr/lib/libXext.so.6.4.0
    4cc88000-4cc9c000 r-xp 00000000 fd:00 1279448    /lib/libpthread-2.6.so
    4cc9c000-4cc9d000 r-xp 00013000 fd:00 1279448    /lib/libpthread-2.6.so
    4cc9d000-4cc9e000 rwxp 00014000 fd:00 1279448    /lib/libpthread-2.6.so
    4cc9e000-4cca0000 rwxp 4cc9e000 00:00 0
    4ce44000-4ce4d000 r-xp 00000000 fd:00 9572633    /usr/lib/libXcursor.so.1.0.2
    4ce4d000-4ce4e000 rwxp 00008000 fd:00 9572633    /usr/lib/libXcursor.so.1.0.2
    4ce5a000-4ce62000 r-xp 00000000 fd:00 9589202    /usr/lib/libXrender.so.1.3.0
    4ce62000-4ce63000 rwxp 00007000 fd:00 9589202    /usr/lib/libXrender.so.1.3.0
    4d306000-4d30a000 r-xp 00000000 fd:00 9572635    /usr/lib/libXfixes.so.3.1.0
    4d30a000-4d30b000 rwxp 00003000 fd:00 9572635    /usr/lib/libXfixes.so.3.1.0
    4d400000-4d415000 r-xp 00000000 fd:00 1279197    /lib/libnsl-2.6.so
    4d415000-4d416000 r-xp 00014000 fd:00 1279197    /lib/libnsl-2.6.so
    4d416000-4d417000 rwxp 00015000 fd:00 1279197    /lib/libnsl-2.6.so
    4d417000-4d419000 rwxp 4d417000 00:00 0
    88b60000-88d30000 rwxp 88b60000 00:00 0
    88d30000-89040000 rwxp 88d30000 00:00 0
    89040000-8a4d3000 rwxp 89040000 00:00 0
    8a4d3000-8cb60000 rwxp 8a4d3000 00:00 0
    8cb60000-8d360000 rwxp 8cb60000 00:00 0
    8d360000-90b60000 rwxp 8d360000 00:00 0
    90b60000-910e1000 r-xs 00001000 fd:00 2066370    /usr/java/jdk1.5.0_12/jre/lib/i386/client/classes.jsa
    910e1000-91360000 rwxp 910e1000 00:00 0
    91360000-9192c000 rwxp 00582000 fd:00 2066370    /usr/java/jdk1.5.0_12/jre/lib/i386/client/classes.jsa
    9192c000-91f60000 rwxp 9192c000 00:00 0
    91f60000-92030000 rwxp 00b4e000 fd:00 2066370    /usr/java/jdk1.5.0_12/jre/lib/i386/client/classes.jsa
    92030000-92360000 rwxp 92030000 00:00 0
    92360000-92364000 r-xs 00c1e000 fd:00 2066370    /usr/java/jdk1.5.0_12/jre/lib/i386/client/classes.jsa
    92364000-92760000 rwxp 92364000 00:00 0
    b0a63000-b0a7b000 rwxs 00000000 00:09 1245197    /SYSV00000000 (deleted)
    b0a91000-b0b6e000 rwxs 00000000 00:09 491530     /SYSV00000000 (deleted)
    b0b75000-b0b78000 rwxp b0b75000 00:00 0
    b0b78000-b0bf6000 rwxp b0b78000 00:00 0
    b0bf6000-b0bf9000 --xp b0bf6000 00:00 0
    b0bf9000-b0c77000 rwxp b0bf9000 00:00 0
    b0c77000-b0c7a000 rwxp b0c77000 00:00 0
    b0c7a000-b0cf8000 rwxp b0c7a000 00:00 0
    b0cf8000-b0cfb000 --xp b0cf8000 00:00 0
    b0cfb000-b0d79000 rwxp b0cfb000 00:00 0
    b0d79000-b0d7c000 --xp b0d79000 00:00 0
    b0d7c000-b0dfa000 rwxp b0d7c000 00:00 0
    b0dfa000-b0dfd000 --xp b0dfa000 00:00 0
    b0dfd000-b0e7b000 rwxp b0dfd000 00:00 0
    b0e7b000-b0e7e000 --xp b0e7b000 00:00 0
    b0e7e000-b0efc000 rwxp b0e7e000 00:00 0
    b0efc000-b0eff000 --xp b0efc000 00:00 0
    b0eff000-b0f7d000 rwxp b0eff000 00:00 0
    b0f7d000-b0f80000 --xp b0f7d000 00:00 0
    b0f80000-b0ffe000 rwxp b0f80000 00:00 0
    b0ffe000-b1001000 --xp b0ffe000 00:00 0
    b1001000-b107f000 rwxp b1001000 00:00 0
    b107f000-b1082000 --xp b107f000 00:00 0
    b1082000-b11c2000 rwxp b1082000 00:00 0
    b11c2000-b1200000 --xp b11c2000 00:00 0
    b1200000-b1201000 r-xp 00000000 fd:00 65719      /usr/lib/gconv/ISO8859-1.so
    b1201000-b1203000 rwxp 00000000 fd:00 65719      /usr/lib/gconv/ISO8859-1.so
    b1203000-b120a000 r-xs 00000000 fd:00 65796      /usr/lib/gconv/gconv-modules.cache
    b120a000-b1210000 r-xp 00000000 fd:00 2066553    /usr/java/jdk1.5.0_12/jre/lib/i386/libLinuxSerialParallel.so
    b1210000-b1211000 rwxp 00005000 fd:00 2066553    /usr/java/jdk1.5.0_12/jre/lib/i386/libLinuxSerialParallel.so
    b1211000-b1214000 --xp b1211000 00:00 0
    b1214000-b1292000 rwxp b1214000 00:00 0
    b1292000-b1295000 --xp b1292000 00:00 0
    b1295000-b1313000 rwxp b1295000 00:00 0
    b1313000-b1316000 --xp b1313000 00:00 0
    b1316000-b1394000 rwxp b1316000 00:00 0
    b1394000-b1397000 --xp b1394000 00:00 0
    b1397000-b1415000 rwxp b1397000 00:00 0
    b1415000-b141c000 r-xp 00000000 fd:00 2065970    /usr/java/jdk1.5.0_12/jre/lib/i386/libnio.so
    b141c000-b141d000 rwxp 00006000 fd:00 2065970    /usr/java/jdk1.5.0_12/jre/lib/i386/libnio.so
    b141d000-b142e000 r-xp 00000000 fd:00 2065969    /usr/java/jdk1.5.0_12/jre/lib/i386/libnet.so
    b142e000-b142f000 rwxp 00011000 fd:00 2065969    /usr/java/jdk1.5.0_12/jre/lib/i386/libnet.so
    b142f000-b14eb000 r-xp 00000000 fd:00 692736     /usr/tools/JMF-2.1.1e/lib/libjffmpeg.so
    b14eb000-b14ee000 rwxp 000bb000 fd:00 692736     /usr/tools/JMF-2.1.1e/lib/libjffmpeg.so
    b14ee000-b1535000 rwxp b14ee000 00:00 0
    b1535000-b1538000 --xp b1535000 00:00 0
    b1538000-b15b6000 rwxp b1538000 00:00 0
    b15b6000-b15b9000 --xp b15b6000 00:00 0
    b15b9000-b1637000 rwxp b15b9000 00:00 0
    b1637000-b163a000 --xp b1637000 00:00 0
    b163a000-b16b8000 rwxp b163a000 00:00 0
    b16b8000-b16bb000 --xp b16b8000 00:00 0
    b16bb000-b1739000 rwxp b16bb000 00:00 0
    b1739000-b173c000 --xp b1739000 00:00 0
    b173c000-b17ba000 rwxp b173c000 00:00 0
    b17ba000-b17e1000 r-xp 00000000 fd:00 2065962    /usr/java/jdk1.5.0_12/jre/lib/i386/libjpeg.so
    b17e1000-b17e2000 rwxp 00026000 fd:00 2065962    /usr/java/jdk1.5.0_12/jre/lib/i386/libjpeg.so
    b17e2000-b17e5000 rwxp b17e2000 00:00 0
    b17e5000-b1863000 rwxp b17e5000 00:00 0
    b1863000-b1866000 rwxp b1863000 00:00 0
    b1866000-b18e4000 rwxp b1866000 00:00 0
    b18e4000-b18e7000 --xp b18e4000 00:00 0
    b18e7000-b1965000 rwxp b18e7000 00:00 0
    b1965000-b1968000 --xp b1965000 00:00 0
    b1968000-b19e6000 rwxp b1968000 00:00 0
    b19e6000-b19e9000 --xp b19e6000 00:00 0
    b19e9000-b1a67000 rwxp b19e9000 00:00 0
    b1a67000-b1a6a000 --xp b1a67000 00:00 0
    b1a6a000-b1ae8000 rwxp b1a6a000 00:00 0
    b1ae8000-b1aeb000 --xp b1ae8000 00:00 0
    b1aeb000-b1b69000 rwxp b1aeb000 00:00 0
    b1b69000-b1b6c000 --xp b1b69000 00:00 0
    b1b6c000-b1bea000 rwxp b1b6c000 00:00 0
    b1bea000-b1c64000 r-xp 00000000 fd:00 2065949    /usr/java/jdk1.5.0_12/jre/lib/i386/libfontmanager.so
    b1c64000-b1c6e000 rwxp 00079000 fd:00 2065949    /usr/java/jdk1.5.0_12/jre/lib/i386/libfontmanager.so
    b1c6e000-b1c72000 rwxp b1c6e000 00:00 0
    b1c72000-b1cb8000 r-xs 00000000 fd:00 692730     /usr/tools/JMF-2.1.1e/lib/jffmpeg.jar
    b1cb8000-b1e74000 r-xs 00000000 fd:00 688176     /usr/tools/JMF-2.1.1e/lib/jmf.jar
    b1e74000-b1ea3000 r-xp 00000000 fd:00 2065985    /usr/java/jdk1.5.0_12/jre/lib/i386/xawt/libmawt.so
    b1ea3000-b1ea6000 rwxp 0002e000 fd:00 2065985    /usr/java/jdk1.5.0_12/jre/lib/i386/xawt/libmawt.so
    b1ea6000-b1ea7000 rwxp b1ea6000 00:00 0
    b1ea7000-b1f6d000 r-xp 00000000 fd:00 2065967    /usr/java/jdk1.5.0_12/jre/lib/i386/libmlib_image.so
    b1f6d000-b1f6e000 rwxp 000c5000 fd:00 2065967    /usr/java/jdk1.5.0_12/jre/lib/i386/libmlib_image.so
    b1f6e000-b1fce000 r-xp 00000000 fd:00 2065944    /usr/java/jdk1.5.0_12/jre/lib/i386/libawt.so
    b1fce000-b1fd4000 rwxp 0005f000 fd:00 2065944    /usr/java/jdk1.5.0_12/jre/lib/i386/libawt.so
    b1fd4000-b1ff8000 rwxp b1fd4000 00:00 0
    b1ff8000-b20bd000 r-xs 00000000 fd:00 2065883    /usr/java/jdk1.5.0_12/jre/lib/ext/localedata.jar
    b20bd000-b20e8000 r-xs 00000000 fd:00 2065899    /usr/java/jdk1.5.0_12/jre/lib/ext/sunpkcs11.jar
    b20e8000-b2105000 r-xs 00000000 fd:00 2066554    /usr/java/jdk1.5.0_12/jre/lib/ext/comm.jar
    b2105000-b2107000 r-xs 00000000 fd:00 2065896    /usr/java/jdk1.5.0_12/jre/lib/ext/dnsns.jar
    b2107000-b212e000 r-xs 00000000 fd:00 2065898    /usr/java/jdk1.5.0_12/jre/lib/ext/sunjce_provider.jar
    b212e000-b212f000 --xp b212e000 00:00 0
    b212f000-b21af000 rwxp b212f000 00:00 0
    b21af000-b21b2000 --xp b21af000 00:00 0
    b21b2000-b2230000 rwxp b21b2000 00:00 0
    b2230000-b2233000 --xp b2230000 00:00 0
    b2233000-b22b1000 rwxp b2233000 00:00 0
    b22b1000-b22b4000 --xp b22b1000 00:00 0
    b22b4000-b2332000 rwxp b22b4000 00:00 0
    b2332000-b2532000 r-xp 00000000 fd:00 9571617    /usr/lib/locale/locale-archive
    b2532000-b2535000 --xp b2532000 00:00 0
    b2535000-b25b3000 rwxp b2535000 00:00 0
    b25b3000-b25b6000 --xp b25b3000 00:00 0
    b25b6000-b2634000 rwxp b25b6000 00:00 0
    b2634000-b2635000 --xp b2634000 00:00 0
    b2635000-b26c1000 rwxp b2635000 00:00 0
    b26c1000-b26dd000 rwxp b26c1000 00:00 0
    b26dd000-b26e8000 rwxp b26dd000 00:00 0
    b26e8000-b26fb000 rwxp b26e8000 00:00 0
    b26fb000-b26fc000 rwxp b26fb000 00:00 0
    b26fc000-b26fd000 rwxp b26fc000 00:00 0
    b26fd000-b2708000 rwxp b26fd000 00:00 0
    b2708000-b271b000 rwxp b2708000 00:00 0
    b271b000-b271f000 rwxp b271b000 00:00 0
    b271f000-b273b000 rwxp b271f000 00:00 0
    b273b000-b274c000 rwxp b273b000 00:00 0
    b274c000-b27c6000 rwxp b274c000 00:00 0
    b27c6000-b2926000 rwxp b27c6000 00:00 0
    b2926000-b47c6000 rwxp b2926000 00:00 0
    b47c6000-b5035000 r-xs 00000000 fd:00 2066020    /usr/java/jdk1.5.0_12/jre/lib/charsets.jar
    b5035000-b504a000 r-xs 00000000 fd:00 2066019    /usr/java/jdk1.5.0_12/jre/lib/jce.jar
    b504a000-b50cf000 r-xs 00000000 fd:00 2066078    /usr/java/jdk1.5.0_12/jre/lib/jsse.jar
    b50cf000-b5138000 rwxp b50cf000 00:00 0
    b5138000-b775d000 r-xs 00000000 fd:00 2066551    /usr/java/jdk1.5.0_12/jre/lib/rt.jar
    b775d000-b776c000 r-xp 00000000 fd:00 2065975    /usr/java/jdk1.5.0_12/jre/lib/i386/libzip.so
    b776c000-b776e000 rwxp 0000e000 fd:00 2065975    /usr/java/jdk1.5.0_12/jre/lib/i386/libzip.so
    b776e000-b778f000 r-xp 00000000 fd:00 2065955    /usr/java/jdk1.5.0_12/jre/lib/i386/libjava.so
    b778f000-b7791000 rwxp 00020000 fd:00 2065955    /usr/java/jdk1.5.0_12/jre/lib/i386/libjava.so
    b7791000-b779c000 r-xp 00000000 fd:00 2065974    /usr/java/jdk1.5.0_12/jre/lib/i386/libverify.so
    b779c000-b779d000 rwxp 0000b000 fd:00 2065974    /usr/java/jdk1.5.0_12/jre/lib/i386/libverify.so
    b779d000-b77a7000 r-xp 00000000 fd:00 1277992    /lib/libnss_files-2.6.so
    b77a7000-b77a8000 r-xp 00009000 fd:00 1277992    /lib/libnss_files-2.6.so
    b77a8000-b77a9000 rwxp 0000a000 fd:00 1277992    /lib/libnss_files-2.6.so
    b77af000-b77b7000 rwxs 00000000 fd:00 2097473    /tmp/hsperfdata_root/2672
    b77b7000-b7b29000 r-xp 00000000 fd:00 2065938    /usr/java/jdk1.5.0_12/jre/lib/i386/client/libjvm.so
    b7b29000-b7b47000 rwxp 00371000 fd:00 2065938    /usr/java/jdk1.5.0_12/jre/lib/i386/client/libjvm.so
    b7b47000-b7f65000 rwxp b7b47000 00:00 0
    b7f65000-b7f6b000 r-xp 00000000 fd:00 2065979    /usr/java/jdk1.5.0_12/jre/lib/i386/native_threads/libhpi.so
    b7f6b000-b7f6c000 rwxp 00006000 fd:00 2065979    /usr/java/jdk1.5.0_12/jre/lib/i386/native_threads/libhpi.so
    b7f6c000-b7f6d000 rwxp b7f6c000 00:00 0
    b7f6d000-b7f6e000 r-xp b7f6d000 00:00 0
    b7f6e000-b7f6f000 r-xp b7f6e000 00:00 0          [vdso]
    bfdc2000-bfdc5000 --xp bfdc2000 00:00 0
    bfdc5000-bffc2000 rwxp bfe02000 00:00 0          [stack]
    VM Arguments:
    java_command: navigator/NavigatorFrame
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/java/jdk1.5.0_12
    CLASSPATH=.:/usr/java/jdk1.5.0_12/lib:/usr/java/jdk1.5.0_12/bin/comm.jar:/usr/java/jdk1.5.0_12/jre/lib/ext/jcl.jar:/usr/tools/JMF-2.1.1e/lib/jmf.jar:/usr/tools/JMF-2.1.1e/lib/jffmpeg.jar:/usr/applications/navigator
    PATH=/usr/java/jdk1.5.0_12/bin:/usr/java/jdk1.5.0_12/bin:/usr/include:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/tools/JMF-2.1.1e/lib:.
    LD_LIBRARY_PATH=/usr/java/jdk1.5.0_12/jre/lib/i386/client:/usr/java/jdk1.5.0_12/jre/lib/i386:/usr/java/jdk1.5.0_12/jre/../lib/i386:/usr/tools/JMF-2.1.1e/lib
    SHELL=/bin/bash
    DISPLAY=:0.0
    HOSTTYPE=i386-linux
    OSTYPE=linux
    MACHTYPE=i386
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x32b1b0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x32b1b0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x28eb70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x28eb70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x28eb70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x290fc0], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x2909f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x2909f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x2909f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x2909f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    ---------------  S Y S T E M  ---------------
    OS:Fedora release 7 (Moonshine)
    uname:Linux 2.6.23.12-52.fc7 #1 SMP Tue Dec 18 21:18:02 EST 2007 i686
    libc:glibc 2.6 NPTL 2.6
    rlimit: STACK 10240k, CORE 0k, NPROC 3583, NOFILE 1024, AS infinity
    load average:0.35 0.76 0.38
    CPU:total 1 (cores per cpu 1, threads per core 1) family 6 model 9 stepping 8, cmov, cx8, fxsr, mmx, sse
    Memory: 4k page, physical 222820k(3468k free), swap 524280k(503880k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_12-b04) for linux-x86, built on May  2 2007 03:26:22 by java_re with gcc 3.2.1-7a (J2SE release)

  • Batch java needed to connect to HP unix ssl servers

    i have an old problem that is new to me. i need to connect to an ssl server. i have a batch java program that we currently use to connect to non-ssl servers. if possible i would like sample code with an explination how it works.

    See the [JSSE Reference Guide|http://java.sun.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html] and supporting material, and the Javadoc for the javax.net.ssl package.

  • Bad http.agent in Java properties : a bug in the HTTP user-agent string?

    Hi all,
    Me :
    I'm patching AWSTATS (web log analyzer tool) in order to recognize which Java version has
    been used to download files.
    Context of the problem :
    Each time a Java program (or applet) is downloading a file (for example .class, .png, .html)
    from a web server, a line will be added in the web server log file. If the web server is well
    configured, the user agent used to download the file will be at the end of the line in the log file.
    For Sun Java JVM, the user agent string is configured in the Java properties under "http.agent".
    Usually, the user-agent string contains the word "Java" and the virtual machine version. In most
    cases, this is just a string like "Java/1.4.2", so this is relatively easy to parse.
    Problem :
    Looking in my web server stats, and then on the web, I found that a JVM's user-agent is
    "Mozilla/4.0 (Windows XP 5.1)", which obviously does not contains the word "Java".
    Consequently, it is difficult to say that this user-agent string belongs to a JVM.
    Further look in my log files and on google shows that this http.agent string appears
    on Microsoft Internet Explorer (it seems MSIE 6.0) over Windows XP with the J2RE plugin:
    http://board.gulli.com/thread/300321
    http://forum.java.sun.com/thread.jsp?thread=531295&forum=30&message=2559523
    http://forum.java.sun.com/thread.jsp?forum=63&thread=132769&start=210&range=15&tstart=0&trange=15
    http://forum.java.sun.com/thread.jsp?forum=32&thread=480899
    http://www.goodidea.ru/setupJava/javaInstall.htm
    The J2RE plugin version does not seems to play a role as this user-agent string has
    been seen on 1.4.1_02-b06, 1.4.2_01, 1.4.2_03 and 1.4.2_04-b05.
    Further information requested :
    I would like to know:
    1) if you have reported the same problem;
    2) if there is some rules for the http.agent property;
    3) if this is a bug.
    Thank you very much, and feel free to add you opinion.
    Julien

    The web log files where the "Mozilla/4.0 (Windows XP 5.1)" user-agent appears can be displayed using the following search terms on google :
    "Mozilla/4.0 (Windows XP 5.1)" -"(Windows XP 5.1) Java"
    http://www.google.ch/search?hl=fr&ie=UTF-8&q=%22Mozilla%2F4.0+%28Windows+XP+5.1%29%22+-%22%28Windows+XP+5.1%29+Java%22&btnG=Rechercher&meta=
    Julien

  • Very New to Jave, need to do totals/subtotals

    Hi, (I hope this is the right place)
    I'm VERY new to Java (I mainly do wourk with php interfaces for MyAQL databases).
    Up until now, there hasn't been anything I couldn't do with PHP that I needed to...
    My boss recently requested subtotals/totals at various points on an input sheet. The sheet inputs numbers of people, so I'm not worried about rounding (The php already takes care of people trying to input parts of people....) or tax.
    It's a rather large form (~144 lines) and the math is already in place to do the subtotaling (among other things) before entering the information into the database.
    How would I go about writing script that would display sub totals, and recalculate them every time one of the boxes value's is modified?
    Is this something javascript is designed to do? Is there a better language out there for this task?
    I've found sites out there that have canned subtotal/total scripts, but I don't want something pre-made unless it comes with a detailed explaination of what everything does; if I'm going to maintain it, I have to understand it.
    Thanks

    Is this a web form? e.g. a html form with input fields?
    You can add onchange or onblur events to your input fields to detect changes. Then you can use javascript to retrieve the values from the form and do the calculation.
    -S

  • HTML JAVA NEED HELP

    I am very new to Java and need some help.
    I am trying to manipulate values about on a web page and seem to have got stuck.
    The following are variables that are entered
    PRICE (typed in)
    BID (typed in)
    New or Second Hand (radio Buttons)
    Then calculate is clicked.
    I can get outputs to work but I can't seem to use the PRICE, BID, or BID % to show in the output Box.
    and
    I can't seem to use what radio button is selected elsewhere other than the output box.
    What I want is to use all variables at any time to calculate and manupulate them.
    Here is the code, this should clarify what I'm talking about:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    </head>
    <body>
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    var myPrice;
    var myBid;
    function Calculate(form)
    var bper;
    bper = (myBid / myPrice) * 100;
    form.Fbper.value = bper;
    function SetmyPrice(PV)
    {myPrice = PV.value;}
    function SetmyBid(dis)
    {myBid = dis.value;}
    function output(obj) {
    var i = 0
    while (!obj.type.checked)
    {i = i + 1}
    obj.response.value =
              "You are bidding for a " +
    obj.type[i].value + ",\n"+
    "item."
    function ClearForm(form){
    myPrice=0;
    myBid=0;
    bper=0;
    form.myPrice.value = "";
    form.myBid.value = "";
    form.Fbper.value = "";
    // -->
    </SCRIPT>
    <center>
    <FORM METHOD="POST">
    </center>
    <p><font size="5">Price �<INPUT TYPE=text NAME=myPrice SIZE="14" ONCHANGE="SetmyPrice(this)"></font></p>
    <p><font size="5">Bid �<INPUT TYPE=text NAME=myBid SIZE="14" ONCHANGE="SetmyBid(this)"></font></p>
    <p style="margin-top: 0; margin-bottom: 0" align="left">
    <input type="radio" checked value="New" name="type">New </p><p style="margin-top: 0; margin-bottom: 0" align="left">
    <input type="radio" value="Second Hand" name="type">Second Hand </p><p style="margin-top: 0; margin-bottom: 0" align="left">
    <INPUT TYPE=BUTTON ONCLICK="Calculate(this.form), output(this.form)" VALUE="Calculate"><INPUT TYPE=BUTTON VALUE=" Reset " onClick="ClearForm(this.form)"></p><p style="margin-top: 0; margin-bottom: 0" align="left">
     </p><p style="margin-top: 0; margin-bottom: 0" align="left">
    OUTPUT</p><p style="margin-top: 0; margin-bottom: 0" align="left">
     </p><p style="margin-top: 0; margin-bottom: 0" align="left">
     </p><p style="margin-top: 0; margin-bottom: 0" align="left">
    <font size="5">Bid </font><font size="4"><INPUT readonly TYPE=text NAME="Fbper" VALUE="" SIZE="4">%</font></p>
    <p><textarea name="response" rows="3" cols="70"></textarea></p>
    <center>
    </FORM>
    </center>
    </body>
    </html>

    That's not java, that's javascript.
    Thanks again to those boneheads at Netscape who decided to confuse everybody with that name. For that matter why does Sun have to have two sets of version numbers for every product.
    Anyway you may get a better response on a javascript forum.

  • New to Java need to parse a page on HTTPS server

    Greetings:
    I am writing a "widget" on Macintosh that goes out and gets a simple piece of information from a page within a secure sever (HTTPS).
    The big picture is: I need to send login information which is stored in a JavaScript form to a java application that would go to the https site and login and then go to a page and parse it for a number. This has been done in Perl originally but the Perl requires a specific library added to your system. My java application needs to pass the number back to JavaScript and hence a number will show up in my widget's window. There will be no browser involved... the widgets are JavaScript/XML based.
    I would need a good example of code to do this as I am VERY new. If anyone can help please let me know.

    http://onesearch.sun.com/search/developers/index.jsp?charset=UTF-8&qt=%2Bparse+%2Bhttps&col=javadoc&col=devforums&col=javatecharticles&col=javatutorials&col=devarchive&col=javasc&col=devall

  • Java need in SAP PI/XI

    Hello,
    I am new to SAP XI. I have worked 3years as ABAP developer.
    I do not know anything in Java. Please suggest the amount of java knowledge that I need to develop to become profound in SAP XI.Can anyone suggest any material that i can go thru to develop java skill that is required in SAP PI.
    Regards,
    HS

    Hi,
    As per the new releases and the past SAP PI/XI versions JAVA usage has been widely used in scenarios for Java Mapping , Adapter Module Development , UDFs and proxies.
    So the basic knowledge of Java is sufficient since you already have a coding background. You need to understand few commonly used functions in UDFs and standard java APIs. Please find the links below which might be of your interests :
    http://help.sap.com/saphelp_erp2004/helpdata/en/78/b4ea10263c404599ec6edabf59aa6c/frameset.htm
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7d4db211-0d01-0010-1e8e-9b07fc2113ab?quicklink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa?quicklink=index&overridelayout=true
    http://java.sun.com/j2se/1.4.2/docs/api/
    Hope this will help you understand Java usage in SAP PI/XI and for core and basic Java knowledge you have lot of websites available.
    Thanks & Regards,
    Abhi

  • How to use Crystal Report with Java - need help

    Dear everyone,
    i am completely new to Crystal report , please can anyone help me to creat a very simple Report using the Crystal report,
    the report will show some records from oracle DB.
    How can i make it by a simple example and with code please?
    do i need any JAR or Bean for Crystal report?
    thanks for your help and please don't hesitate to contact me in case of any inquiries.
    my email: [email protected]
    Thanks in advance

    I what to use Crystal report to generate report.My programe in java swing .Iam retrive table from database in Jtable .But when giving print
    command its print half screen .so that why I wantto usecrystal report
    package file2;
    import file2.choice;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.sql.*;
    import java.util.*;
    import java.awt.print.*;
    import javax.swing.table.*;
    import com.sun.java.swing.*;
    import javax.swing.JTable;
    public class cour extends JFrame implements Printable
         //Menu fileMenu;
         public static void main(String[] a)
    cour n = new cour();
    n.setVisible(true);
    public cour()
         super("Course Report");
         report();
         protected void report()
              JPanel panel = new JPanel();
         JButton printButton = new JButton("Print");
         panel.add(printButton);
         JButton exitButton = new JButton("Exit");
         panel.add(exitButton);     
         DefaultTableModel defaulttablemodel = new DefaultTableModel();
              JTable jtable = new JTable(defaulttablemodel);
              panel.add(new JScrollPane(jtable));
              String      tempname="";
              int tempcnt;
              String driver="sun.jdbc.odbc.JdbcOdbcDriver";
              String url="jdbc:odbc:regs";
              Object[] data = new Object[4];
              try
                             Class.forName(driver);                         
                             Connection connection=DriverManager.getConnection(url,"sa","");
                             Statement statement = connection.createStatement();     
                             String query = "SELECT courseid as CourseID,coursen as CourseName,cfee as Fee,coursed as Duration FROM course";
                             ResultSet rs = statement.executeQuery(query);     
                             ResultSetMetaData rmeta = rs.getMetaData();
                             int numColumns=rmeta.getColumnCount();                         
                             for(int i=1;i<=numColumns;i++)
                                  if(i<=numColumns)
                                       defaulttablemodel.addColumn(rmeta.getColumnName(i));
                             while(rs.next())
                                  for(int i=1;i<=numColumns;++i)
                                       if( i<=numColumns)
                                            tempname = rs.getString(i);
                                            tempcnt=i-1;
                                            data[tempcnt] = tempname;          
                                  defaulttablemodel.addRow(data);                              
                   catch(Exception ex)
              printButton.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
              /*if(ae.getActionCommand().equals("Print"))
              PrinterJob pj = PrinterJob.getPrinterJob();
              pj.setPrintable(cour.this);
              if (pj.printDialog())
              try
              pj.print();
              catch (PrinterException pe)
              System.out.println(pe);
    exitButton.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
              choice ch=new choice();
                   setVisible(false);
                   ch.setVisible(true);
    setContentPane(panel);
         setSize(1040,780);
    /*Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = getSize();
    int x = (screenSize.width - frameSize.width) / 2;
    int y = (screenSize.height - frameSize.height) / 2;
    setLocation(x, y);*/
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    dispose();
    System.exit(0);
    public int print(Graphics g, PageFormat pf, int pageIndex)
    if (pageIndex != 0) return NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D)g;
    g2.translate(pf.getImageableX(), pf.getImageableY());
    getContentPane().paint(g2);
    return PAGE_EXISTS;
    }

Maybe you are looking for

  • Total hours booked against a maintenance plan

    Hi, How can I check how many hours have been booked against each maintenance plan. Many thanks.

  • Cancel of PO

    Hi Gurus, Is there anything called :Cancellation of PO? There is T.Code MBST via which we can cancel/reverse GR and other documents. But, if we want to cancel PO and/or P.Reqs  which are created in Production box, what is the way? Thanks, Kumar

  • Tagging loops,how to figure out the key they're in ?

    I have a few loops that are not tagged and I want to use them but must figure out what key they are in,is there an app or program that will tell you the key and or bpm ?

  • Changes to planned order in R/3 not reflecting in APO

    Hi I have changed the date in planned order in R/3 but same is not updating in apo. After ccr also it is not happening. regards pradeepta

  • Vision Builder 3.5

    I'm using vision builder 3.5 for product inspection. I want to know whether i can open Inspection Interface Screen as default ? And as soon as the screen opens the inspection should be in running mode ? Because the system will be stand alone, only th