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 6 of 6

Thread: Just installed JDK 13 but no Java Control Panel

  1. #1
    Junior Member
    Join Date
    Sep 2019
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Just installed JDK 13 but no Java Control Panel

    Hi - complete newbie - just installed JDK v 13 and created and run my first 'Hello World' java program. Great but I understand there should be a Java Control Panel. I am using Windows 10 - Nothing in Start, Control panel / Apps has Java SE v 13 icon but only option is uninstall, no javacpl in bin - completely lost - please help - thanks guys

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Just installed JDK 13 but no Java Control Panel

    Try installing a JRE. I don't know if the Java Icon in the control panel comes with JDK 13
    If you don't understand my answer, don't ignore it, ask a question.

  3. #3
    Junior Member
    Join Date
    Oct 2019
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Just installed JDK 13 but no Java Control Panel

    Hi All

    I am having the same problem with no java control panel. I am a bit new to
    java but am catching on quickly. I am using a java library called
    "roombacomm". roombacomm is a library for controlling the roomba robot (which
    is previded by irobot). It requires a version of java 13 or higher (major 57) and 32bit.
    I have a PC capable of running 32 bit and 64 bit. I need to locate the java
    control panel to somehow install 32 bit VM. I also need to compile java code
    and run it. I was looking at a JDK. If anyone can tell me if There is
    any way that I can run a java 13 32 bit version I would be grateful.

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Just installed JDK 13 but no Java Control Panel

    What results do you get searching online for that version of java? Does such a JRE exist?
    If you don't understand my answer, don't ignore it, ask a question.

  5. #5
    Junior Member
    Join Date
    Oct 2019
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Just installed JDK 13 but no Java Control Panel

    Hi Norm

    I finally found Java 13 32 bit JDK. It works great, but I can only run my programs in a folder called "roombacomm".

    Here is a program I am running. This program runs in the folder "C:\roombacomm_library\roombacomm\roomba_square.ja va". This program works perfectly. I would like to run my programs in the folder "C:\java_programs".

    I run this program buy this command: "java -Djava.library.path=rxtxlib -classpath .;rxtxlib/RXTXcomm.jar;rxtxlib/bluecove-2.1.0.jar roombacomm.roomba_square" I think that the problem is that my program can only access the roombacomm library from the roombacomm folder. Any help would be great.

    Thanks.




    package roombacomm; //import roombacomm package
    ...
    public class roomba_square
    {
    public static void main(String[] args)//main function
    {
    RoombaCommSerial roombacomm = new RoombaCommSerial();
    connected=roombacomm.connect( portname );
    ...
    roombacomm.startup();
    roombacomm.pause(100);
    roombacomm.control();
    roombacomm.drive(100,300);
    wait_key_press();
    roombacomm.stop();
    roombacomm.disconnect();
    ...
    }
    public static void wait_key_press()
    {
    //wait until key is pressed.
    ...
    }
    }

  6. #6
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Just installed JDK 13 but no Java Control Panel

    I think that the problem is
    If there are error messages, please copy the full text and paste it here so we can see what the problem is.

    Please edit your post and wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Replies: 6
    Last Post: October 2nd, 2014, 08:12 AM
  2. Java Control Panel
    By aussiemcgr in forum Java Theory & Questions
    Replies: 7
    Last Post: January 20th, 2014, 12:30 PM
  3. Java Control Panel quit unexpectedly while using the libjvm.dylib plugin
    By Lebogang in forum What's Wrong With My Code?
    Replies: 0
    Last Post: November 21st, 2012, 03:14 AM
  4. How to make a simple and efficient web control panel.
    By kelsmith11 in forum Java Theory & Questions
    Replies: 3
    Last Post: October 18th, 2011, 02:28 PM