Total newbie help plz!!

I am trying to permenately install the javac exe file path. However I am failing miserably. The file is located in my computer at C:\j2sdk1.4.1_02\bin
could someone please tell me the entry I need to make in my sysedit for it to work?

click start
click run
type c:\windows\command
press enter
type notepad autoexec.bat
press enter
press ctrl-end (hold ctrl, press end and release both)
press enter
type set path=C:\j2sdk1.4.1_02\bin
press enter
press alt-F4 (hold alt, press F4 and release both)
press enter
reboot
click start
click run
type c:\windows\command
press enter
type javac
be impressed
Kind regards,
Levi

Similar Messages

  • Total Newbie Help Illustrator CC

    Well I will first off admit two important things:
    1. I just now joined the forum while in my 3rd day of trying to get over my first major issue: therefore I have not searched this forum at all for my answer and out of pure frustration I am posting this before bed in hopes having some friendly advice in the morning and no suggestions to search the forum, except of course helpful or suggested links.
    2. I have only been using Illustrator for 3 days. No prior knowledge and several of these hours have been watching youtube videos and taking notes as if in college.
    So there you have it. ihave spent the last 3 days trying to get over something surely pretty simple. I have learned many other helpful things in my youtube ventures as well as reading the manual and some helpful articles. I have been drawing for most of my life and I want to learn illustrator to have control of digitizing my own art while editing and perfecting it along the way with the vision I have for it. I cant expect anyone else to have the same vision as me so I want to be the one who translates it to the next level whether it be for a T-shirt or a sticker. I am getting started by digitizing a logo of mine. I figured I would do something pretty simple. I have a vision for it and I figure I can easily acheive it as a beginner project. It is basically some linework and I am going to add some scrollwork at the bottom and some simple lettering. I started with the outline of the logo itself and have already run into a major problem in which i foresee myself encountering for almost every project, thats why I assume there mjust be a simple solution. The logo is similar to a transformers logo as far as the outside with three arrows that make 3 letters inside each other that share lines so to say.
    Regardless lest just say i am making a fat box letter style v with an arrowhead on one end at the top left. I can draw this either with the pen tool or the line segment tool. I use shift to keep the lines 90 deg. and I connect the lines to each other at the end. Andthats where my problem arises. When I zoom in to the image the lines touch in the middle but they do not form sharp corners. There must be some way to snap these outside corners together instead of looking like there is a square chunk missing from the outer corners. If I change the stroke to have the anchors iside the extended end then the lines extend to overlap each other but still not long enogh for the sharp point of the corner. The desired effect I have is a sharp corner that fits together as simply as the corners look when choosing the rounded ends. I hope this makes sense enough for yall to understand
    Thanks in advance for any and all advice,
    Dylan Kail

    Dylan,
    In addition to what tman said, what you need is to have a closed path, using the right Stroke palette options for Cap (Butt or Projecting) and Join (Miter, with a sufficient Miter Limit to get a pointy end at the angles in question).
    and I connect the lines to each other at the end.
    You should create one closed path by joining the relevant (end) Anchor Points.
    In CC you can do that by just selecting the paths to be joined and clicking Ctrl/Cmd+J.
    But the relevant points have to be end Anchor Points, which means that the paths to be joined have to be open. You may cut paths by:
    A) Clicking a path segment with the Direct Selection Tool and press delete; this will delete the segment and make the agjacent Anchor Points into end Anchor Points;
    Or:
    B) Clicking each Anchor Point to become an end Anchor Point with the Scissors Tool, then deleting the segment(s) in between.
    As it appears, it makes little difference whether you use the Pen Tool or the Line Segment Tool before joining (it would in (some) earlier versions).

  • Total newbie, help me out please!

    So i've bought a new mac mini, fully upgraded via apple,
    With pre installed FCE,
    (enough for my needs)
    I want to buy an external hard drive,
    Do i buy a "g technology g drive"
    Or a "g technology g raid"
    help, i'm going to buy one of them really soon!
    Both the same price, both 2 tb, it seems the raid is made for final cut production, but if i'm just using a mac mini will it matter?
    Using a mac mini for FCE is already a limiting factor for FCE, so will it matter if my hd is a g tech raid drive, or not?
    Thanks
    Sincerely,
    Newbie

    I have used mirrored raids for 20 years. I have found that if you are trying to protect from a simple data error its ok. If however there is a system glitch that scatters bad data - it will most likely scatter bad data on the mirror too- a bad fact of life. For my part I prefer 2 separate spindles with a regular backup from my working spindle to my hot spare. Usually separated by 24 hours with a data verification step in the middle. I also run a third spindle on hot projects where the backup is "like" a mirror but is instead a synch to the third spindle. Not for everyone but i have been burnt too many times " 10 minutes" before i have to deliver, And, Now that I am horsing around with FCE the need to save my time is even more critical.

  • Newb help plz

    Hello im very new to java decided i wanted to learn a bit in college.
    This program is suppose to ask what the users favorite city is and display the answer's letter length, in uppercase, lowercase, and the first letter of the city. The only problem i have is i do not know how to get the program to read what the user types in. I can type in georgia and it will work perfectly fine but im clueless on how to get the users input in. Any help is fine thank you
    import java.util.Scanner; //Needed for Scanner Class
    public class StringManipulator
    public static void main(String[] args)
    String city;
    // Length of city char
    int stringSize;
    stringSize = city.length();
    // Uppercase char
    String upper = city.toUpperCase();
    // Lowercase char
    String lower = city.toLowerCase();
    // First letter
    char letter;
    letter = city.charAt(0);
    // Get user's favorite City
    Scanner = new Scanner(System.in);
    System.out.print("What is your favority city? ");
    city = keyboard.nextLine();
    // Display information
    System.out.println(stringSize);
    System.out.println(upper);
    System.out.println(lower);
    System.out.println(letter);
    }

    blasian wrote:
    Hello im very new to java decided i wanted to learn a bit in college.
    This program is suppose to ask what the users favorite city is and display the answer's letter length, in uppercase, lowercase, and the first letter of the city. The only problem i have is i do not know how to get the program to read what the user types in. I can type in georgia and it will work perfectly fine but im clueless on how to get the users input in. Any help is fine thank you
    import java.util.Scanner; //Needed for Scanner Class
    public class StringManipulator
    public static void main(String[] args)
    String city;
    // Length of city char
    int stringSize;
    stringSize = city.length();
    // Uppercase char
    String upper = city.toUpperCase();
    // Lowercase char
    String lower = city.toLowerCase();
    // First letter
    char letter;
    letter = city.charAt(0);
    // Get user's favorite City
    Scanner = new Scanner(System.in);
    System.out.print("What is your favority city? ");
    city = keyboard.nextLine();
    You were close ;)
    You need to name your new Scanner e.g.
    Scanner input = new Scanner(System.in)Then you need to use the "input" (which is the scanner object) to call with.
    e.g.
    city = input.nextLine(); which will will read the next line that the user enters and assign it to "city"
    // Display information
    System.out.println(stringSize);
    System.out.println(upper);
    System.out.println(lower);
    System.out.println(letter);
    }and you could also use one line to declare. e.g.
    char letter = city.charAt(0);But I would suggest declaring all your variables in one place(beginning of your code) and then initialize them after you have the user input.
    Hope this helps
    ;)

  • Total newbie for jsp..plz help

    frendz...me a total newbie to jsp.havin some problem in it.i have already installed jdk,jwsdp2.0 wif its tomcat container.Already set the path for both ..such as JAVA_HOME=E:\Program Files\Java\jdk1.5.0_06
    TOMCAT_HOME=E:\tomcat50-jwsdp
    and could execute the sample jsp's perfectly.But having problem wif my jsp tutorials. such as when i wrote this counter codes in notepad..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <head>
    <tittle>Jsp Declaration</tittle>
    </head>
    <body>
    <h1>Declarations</h1>
    <%! int j=0;%>
    <h2>Counter</h2>
    <p>This page has been hit <span> <% ++j %> </span> times since it was first loaded.</p>
    </body>
    </html>
    and i paste it in webapps in tomcat folder.
    What should i do to view the jsp file?isaved as counter.jsp.if i right click and view it in IE/firefox it only shows the source code.is there any mistake in the codes?or i did i do anything wrong?how shall i compile these files?help me aout wif my basics please.thanks bro's..

    "I pasted it in webapps in tomcat folder".
    Webapplications need to go in their own subdirectory inside the webapps directory. Say you want a webapp 'test', then you would store your JSP as
    TOMCAT_DIR\webapps\test\counter.jsp
    Now you can open this JSP in your browser. Assuming Tomcat is running on the localhost and the default port 8080, the url would be:
    http://localhost:8080/test/counter.jsp
    If that doesn't work something is horribly misconfigured.

  • Total newb

    Hello :) ,
    so Im a total newb :(
    I am trying to make this code into a function....
    <code>
    jd_label.setIcon(new javax.swing.JLabel(){
    public javax.swing.Icon getIcon(){
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    catch (java.net.MalformedURLException e){
    return null;
    }.getIcon());
    </code>
    problem is, Im such a new i dont know how to use a var on this line...
    jd_label.setIcon(new javax.swing.JLabel(){
    I would like jd_label to be a $var but java just wants to update
    a label named "var".... i.e.
    JLabel jd = new Jlabel();
    string fred = jd
    fred.setIcon()
    but this freaks out... in PERL it seems the vars are a little more
    reconazable...
    $fred.setIcon();
    Could some one please help me :)
    Thanks in advance,
    jd

    You need to study up on what Java is, how it works, syntax, etc. It seems you don't have the first clue how to write a valid Java class. This is fine, and of course that's where you have to start, but I think your time will be better spent reading the tutorials (links to which can be found on your left) than getting piecemeal help here on the forums. When you've gotten a handle on what classes, objects, variables, and methods are, and gotten some idea about syntax, come back with more specific problems and people will be more than willing to help you. Also, post to the New to Java Technology forum rather than this one.

  • Total newb var question

    Hello :) ,
    so Im a total newb :(
    I am trying to make this code into a function....
    <code>
    jd_label.setIcon(new javax.swing.JLabel(){
    public javax.swing.Icon getIcon(){
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    catch (java.net.MalformedURLException e){
    return null;
    }.getIcon());
    </code>
    problem is, Im such a new i dont know how to use a var on this line...
    jd_label.setIcon(new javax.swing.JLabel(){
    I would like jd_label to be a $var but java just wants to update
    a label named "var".... i.e.
    JLabel jd = new Jlabel();
    string fred = jd
    fred.setIcon()
    but this freaks out... in PERL it seems the vars are a little more
    reconazable...
    $fred.setIcon();
    Could some one please help me :)
    Thanks in advance,
    jd

    Thank you :)
    Im still confused...but that will pass in time
    As for the code in the first post... that was from a scrip i wrote
    but the section i posted NetBeans wrote. here is the whole scrip...
    All i really want to do is put pictures on labels...and i thought, why write
    the same code for every button, ill just make a function out of the whole setIcon bit and call it for each label that needs a picture, passing the url of the picture off to the function... Below gets me one pic on one label, so
    how can i reproduce this efffect on other lables using the same code over and over?
    import javax.swing.*;
    import java.awt.*;
    public class HelloWorldSwing {
    public static void main(String[] args) {
    JFrame frame = new JFrame("HelloWorldSwing");
    JLabel label = new JLabel("Hello World");
    JLabel jd_label = new JLabel();
         JTextField tex = new JTextField("sup suka");
         JPanel pan = new JPanel();
         pan.setLayout(new GridLayout(1,3,10,10));
         pan.add(label);
         pan.add(jd_label);
         pan.add(tex);
    // i wanna make this bit into a fuction to reuse
         jd_label.setIcon(new javax.swing.JLabel() {
    public javax.swing.Icon getIcon() {
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    } catch (java.net.MalformedURLException e) {
    return null;
    }.getIcon());
         frame.getContentPane().add("Center", pan);
         frame.pack();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);

  • Im new to the 5g ipod help plz

    will the ipod turn off if i leave it on pause? i know i have a really stupid question but help plz thx

    Yes.

  • My Apple TV is not working. On tv display, I'm getting unsupported signal. Check your device output. Can anyone help plz.

    My Apple TV is not working. On tv display, I'm getting a message 'unsupported signal. Check your device output. ' Can anyone help plz.

    connect it to a tv which support full hd and go into the settings and lower the resolution as much as possible and then connect it with your tv once more

  • I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    Try
    https://iforgot.apple.com

  • I lost my phone and i got an unlocked 4s from my gf she used it before an its still connected to her icloud is there a way i can restore my icloud back up to replace hers without messing up the unlock also my latest backup isnt showing on my pc help plz!!

    i lost my phone and i got an unlocked 4s from my gf she used it before an its still connected to her icloud is there a way i can restore my icloud back up to replace hers without messing up the unlock also my latest backup isnt showing on my pc help plz!!

    Please please help me, if you know how.

  • I cant get voice over to work on my 4G shuffle it clicks off every time help plz

    i need help plz it wont work

    Hello,
    Welcome to Adobe Forums.
    Try uninstalling Adobe Flash Player from Flash Player uninstaller : http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html#main_uninstall
    Try a clean installation using this KB : http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- mac.html
    Thanks,
    Vikram

  • Help Plz.......!!!!its urgent

    hi nokia users
    flash lite on my 5530 only plays youtube videos,and when tried to play videos on other sites then it says flash player is required............do ui use any software that supports web videos...???
    help plz.....
    thanks in advance

    Falshplayer vedio cant acces in your device?

  • Help plz so my gf said she block me and we txt back to back but later on i sent her a messages and it said it was read so am I blocked  a

    help plz so my gf said she block me and we txt back to back but later on i sent her a messages and it said it was read so am I blocked 

    The proper way to close Firefox is through the File menu "Exit" or the equivalent with the Firefox button.
    More detail in item '''#38 Firefox already running '''
    of
    [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6) (#fx4interface)]
    Firefox already running, to properly shutdown Firefox when closing the last window use File → Exit/Quit (or Firefox button → Exit). Closing Firefox with the [X] in the upper right corner closes the window ("Ctrl+W") but that does not necessarily close Firefox if it has subtasks running. If you want to close and reopen Firefox use the "Restart" within Add-ons if you made a change requiring a restart, or install "[https://addons.mozilla.org/firefox/addon/restartless-restart/ Restartless Restart]" ("Ctrl+Alt+R") which will allow you to take Firefox down and restart without having to check the Windows Task Manager to see if Firefox first actually ended. [http://kb.mozillazine.org/Firefox_hangs Firefox hangs]

  • Help plz, i need back up my phone

    Help plz, i have iphone 4 i still have icloud  on my itunes and i need to update it to the new one but i dont want to lose any of my pictues of my kids im not sure if ive backed it up before if i have it would of been a long time ago plz help me thanks

    jennyspeedy* wrote:
    i dont want to lose any of my pictues of my kids im not sure if ive backed it up before if i have it would of been a long time ago plz help me thanks
    Then use the device as designed.  Copy the pictures off the device to the computer.  For any pictures that you desire to keep on the device, simply sync them via iTunes.
    Failure to copy the pictures off the device is only asking for problems.  If the device is ever lost/stolen or simply fails to work, without a backup they would be gone as well.

Maybe you are looking for