Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: I can't enter any values in JTextField after loading the flash files.

  1. #1
    Junior Member
    Join Date
    Jul 2012
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I can't enter any values in JTextField after loading the flash files.

    Hi to all,
    In my application I have two panels. One panel has JTextField and another panel i loaded flash files.
    The flash files are build by CS4. I'm using JDIC 0.9.1.0 to load the flash files. While open the application i loaded flash file and I try to enter any input in the textfiled, but I can't enter the values. After minimize and maximize the application I can enter the values.

    This problem happens only after I change the jre version from 1.6 to 1.7.

    While loading flash files I'm getting the below exception.

    org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
    at org.jdesktop.jdic.init.JdicManager.initBrowserNati ve(Unknown Source)
    at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unkn own Source)

    pls give me a solution.

    Thanks in advance...


  2. #2
    Member
    Join Date
    Jul 2012
    Posts
    119
    Thanks
    0
    Thanked 19 Times in 19 Posts

    Default Re: I can't enter any values in JTextField after loading the flash files.

    This problem happens only after I change the jre version from 1.6 to 1.7.
    Are you sure?
    org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
    This message tells you exactly what kind of problem JRE encountered. Check the path convention, the existence of the filename and adjust it accordingly to Java convention.

  3. #3
    Junior Member
    Join Date
    Jul 2012
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: I can't enter any values in JTextField after loading the flash files.

    Ya in jre 1.6 i'm not getting that exception for the same situation.

    Actually i specify the exact path.. The exception came but it's working fine also..

  4. #4
    Member
    Join Date
    Jul 2012
    Posts
    119
    Thanks
    0
    Thanked 19 Times in 19 Posts

    Default Re: I can't enter any values in JTextField after loading the flash files.

    saran123,
    well, then I believe that something incompatible between 1.6 and 1.7. You make me remember about an undesirable effect I ran into when I upgraded from 1.6 to 1.7...namely: When several sockets are open in some running threads and and the user click the red "X" to exit JVM won't exit immediately but waits for the timeout exception. And that could be several seconds...

Similar Threads

  1. Replies: 8
    Last Post: May 28th, 2012, 11:29 AM
  2. JDIC init Exception while running Flash files (.swf) through Java Swings
    By kushima@gmail.com in forum AWT / Java Swing
    Replies: 1
    Last Post: March 1st, 2012, 05:40 AM
  3. Replies: 15
    Last Post: September 2nd, 2011, 05:05 PM
  4. Using jbutton to write to jtextfield values to database
    By Sociopath in forum What's Wrong With My Code?
    Replies: 5
    Last Post: May 23rd, 2011, 10:53 PM
  5. JTextField getting text values
    By The_Mexican in forum What's Wrong With My Code?
    Replies: 8
    Last Post: November 18th, 2010, 05:41 PM