I need big help

I just installed the Java2 standard edition and I am just stuck on what to do period. I have a book called Java2 and I am stuck right at the part with "Class" I don't know how to make the javac run to make a class. The only thing I've done so far is try to create a file called "Saluton.java". I have saved that file and I am stuck from there.
Can somebody, anybody please help me.

I'm going to assume you got the latest version of java...
You'll need to add this line to your autoexec.bat file in c:\
set path=c:\j2sdk1.4.1_02\bin
or, if you already have a path set, add it on the end like so
set path=......;c:\j2sdk1.4.1_02\bin
Note the ; in between paths.
Hope this does the trick,
Radish21
BTW, you'll need to restart for it to take effect.

Similar Messages

  • Need big help creating PDF/X-1a compliant document.

    Hi all,
    I have tried this on my own but cannot make it work as I am not so computer savy. I have created all the files to specifications as best I can but when I try and use the preset PDF/X-1a it says violation both artbox and trimbox for every page. Ive tried fixing this manually and by using Preflight but it doesnt work for me. Can someone please help me create a PDF/X-1a complient document? I am desperate as I am trying to do this for a friend who needs my help. Looking for a good savior/Samaratin for help. My email is [email removed by host] Any help at all would be greatly appreciated either in an answer here or an email.
    Thank you in advance

    I create the files in photoshop and saved as PDF with the preset PDF/X-1a_2001 but I cant or at least I dont know how to define the bounding boxes like Trim Box and etc. in photoshop. The problem I am facing is that the pages are supposed to be set as 11.5 x8.75 for printing at 11.0 and 8.5. So I made my files the 11.5 x 8.75 size but now I cant set them to be printed at the right size(if that makes any sense-sorry I am a noob). So I am not sure what to do. I thought saving it as a PDF in photoshop and then fixing it in Acrobat was what I was supposed to do? I tried manually to set the artbox to 0 and set the trimbox to where it needed to be 11.0x8.5 with different parts cut off for the odds and even pages. But still when I try to save as PDF/X-1a it gives me error messages. I have searched the web but cant figure it out. It seems so easy for people to do it but I cant figure it out and I am panicking and need help. Can anyone help me?

  • Need big help from moderator or host!

    I need some urgent help from someone who have the authority to delete my two - and only - post from the forum.
    I made the posts back in 2005 (using another profile) and still after all these years whenever you search for my real name in google, the post shows up 2nd or 3rd in the results! I really find that extremly problematic!!
    Please contact me (if you have the authority to see my current email-address) - or make a comment to this post, If you know who I should contact - or how I should solve the problem.
    Tkanks.

    I will ask the Mods to delete your posts, if it is possible. They would need to know your old profile.

  • I start to do it but that what all what i can do"i need big help"

    i post last day abut need for code for my project but i just could to do thise code with the help that i got bcz i don't know how to do more& i don't have time with my other projects so i hope that there is eny one have ready look like this simple paint program he will save my life
    this is me mail [email protected]
    //first part
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CustomPanelTest extends JFrame {
    private JPanel buttonPanel;
    private CustomPanel myPanel;
    private JButton circle, square, oval;
    public CustomPanelTest()
    super("Paint Program");
    myPanel = new CustomPanel();
    myPanel.setBackground(Color.white);
    square = new JButton("Square");
    square.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    myPanel.draw(CustomPanel.SQUARE);
    oval = new JButton("Oval");
    oval.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    circle = new JButton("Circle");
    circle.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    myPanel.draw(CustomPanel.CIRCLE);
    buttonPanel = new JPanel();
    buttonPanel.setLayout( new GridLayout(1,2));
    buttonPanel.add(circle);
    buttonPanel.add(oval);
    buttonPanel.add(square);
    Container c = getContentPane();
    c.add( myPanel, BorderLayout.CENTER);
    c.add(buttonPanel, BorderLayout.NORTH);
    setSize(600,300);
    show();
    public static void main(String args[])
    CustomPanelTest app = new CustomPanelTest();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing(WindowEvent e)
    System.exit(0);
    //second part
    class CustomPanel extends JPanel {
    public final static int CIRCLE = 1, SQUARE = 2;
    private int shape;
    private int x[]=new int[7], y[]=new int[7];
    private int t=0;
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    if(shape == CIRCLE)
    g.fillOval(x[0], y[0], (x[1]-x[0]), (y[1]-y[0]));
    else if (shape == SQUARE)
    g.fillRect(x[0], y[0], (x[1]-x[0]), (y[1]-y[0]));
    private class MouseClickedHandler extends MouseAdapter {
    public void mousePressed( MouseEvent e)
    x[0] = e.getX();
    y[0] = e.getY();
    public void mouseReleased( MouseEvent e)
    x[1] = e.getX();
    y[1] = e.getY();
    if ((x[1]-x[0]) < 0)
    t=x[1];
    x[1]=x[0];
    x[0]=t;
    if ((y[1]-y[0]) < 0)
    t=y[1];
    y[1]=y[0];
    y[0]=t;
    repaint();
    public void draw( int s)
    shape = s;
    repaint();
    hi all I need ready code for a simple paint program today for me ics projct
    plz give me a halp on this give me what you have with you and it is so good if it look like this :
    Design a GUI based drawing Java application that works like a simple paint program
    1-There should be a number of buttons for choosing different shapes to draw. For example, there should be a button for rectangle. If user presses the rectangle button, then he can draw a rectangle using mouse. Similarly, there should be a button for each shape(rectangle, circle, ellipse, and line etc.
    2-The shapes can be filled with different colors.
    3-There should be option of moving .
    4- There should also be three menus including File, Shape, and Color menu.
    i. File menu can have menu items New and Exit. If user selects New, the drawing area will be cleared and all shapes will be erased.
    ii. Shape menu will serve the same purpose as of feature 2 described above. It will have menu items for drawing all the different shapes. For example, there will be menu item for rectangle; so user can draw a rectangle by selecting the menu item for rectangle.
    iii. Color menu will serve the same purpose as of feature 3 described above. It will have menu items for all the colors which are shown in color buttons. The user can select a color from this menu and then click inside a shape to fill it with the selected color.

    add this constructor to CustomPanel
    public CustomPanel()
      addMouseListener(new MouseClickedHandler());
    }

  • Hard drive corruption? I need big help!

    Hey everyone,
    I'll make this short and to the point, well as much as possible.
    Basically, my files on my MacBook Pro won't allow themselves to be copied to ANY other item! I've tried on flash keys, external hard drives with USB and Firewire, even on my FTP server! I've also tried to run my MBP as a hard disk on another Mac using a Firewire cable to no avail!
    Basically, there was a problem with my system so I did an archive and install until I was able to back everything up properly and reformat/install. There are some files I really need, which I could open, yet I can't transfer/copy! I get "Error - 36"
    Anything to fix this or help me?!

    Can't read or write the file, often due to Permissions - run Disc Utility and Repair them
    Repairing permissions in Disk Utility will never fix permission issues such as this, assuming it is a permissions problem, and will only repair them for software and not data.
    Now, to the OP, if you Get Info on both what your are trying to copy and where you are copy to and look in the Ownership & Permissions section do you have read & write permissions for both?

  • Icloud activation plz need big help :(

    hello apple ,
     here is my situation , in december 2013 my ant lives in usa she bought two iphones 5 one of herself and one for me as a present for my graduation this summer ,so her son ( my cusin ) set them up and he activated the icloud security in both of them , i mean he create an apple account for her device and one another for me , the problem is when my aunt came yesterday from usa to tunisia ( i live in sousse , tunisia ) and she gave me my present , i was really happy and when i came back home i restored it and updated but after i have done that and tried to open it as usual it was stucked in the activation lock of icloud security , i did contacted my cusin and ask him for the apple ID and password but the problem is that he couldn't remember it and even if he tried to reset the password he forgot about the security questions and answers ... please apple help me im really sad and upset about what i have done it was working great before restore ... looking forward for a positive email ,
    IMEI: ****
    ICCID : **** please i can"t wait to use it ...help me !
    <Edited By Host>

    Hi essfre10,
    Welcome to the Apple Support Communities!
    It looks like the iPhone 5 is in a mode called Activation Lock. Please use the following article for reference and for information on how to resolve this situation. If your cousin doesn't know the password he may need to contact Apple support for help resetting it.
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/ts4515
    I hope this helps,  
    -Joe

  • NEED BIG HELP PLEASE!!!!!

    ok this is whats happend my ISP is with NTL and i went on holiday and forgot to pay the bill so when i got back i was cut off but i paid the bill and got put back on i was on the 1MB boardband and i tryed to play runescape but when i open it all it dose is stay at LOADING GAME ENGINE and after a little bit of time it will load the game and then i login but after i login i can play it for like 5 mins and then its stats to lag really bad and then i close the program and try to do it all again and it just stays at LOADING GAME ENGINE and thats it so i thorght it was my internet so i got the 4MB broardband and it still dose it have i done something to my java do i need something i dont no if any1 can help me then plz do!?!

    this isn't a broadband technical support forum, nor a RuneScape game support line.
    There's a RuneScape technical support forum you should be using instead
    http://kbase.runescape.com/viewcategory.ws?cat_id=126

  • Need big help with setting up mail account.

    Okay first, I would like to say you guys really need a sticky of basic instructions on how to set up a mail account for different carriers. I use Gmail mainly but I cannot get my mail to sync for the life of me with POP on and everything. I also heard Gmail is buggy and I would like to try an IMAP account which I heard was better. Can ANYONE give me some good step by step instructions on how to set one up. What is the best? What works well? I am willing to create a new email just for the iPhone. Thanks in advanced!

    There are too many email account providers from internet service providers to non-ISP email account only providers for Apple to provide "basic" instructions for each. The iPhone's email client is not much different from an email client on a computer and the require account setup information is provided by your ISP or email account provider.
    You can't just set up an IMAP account. You must have an email account provider that supports/provides an IMAP account and there aren't many that do. Most ISPs and email account providers support/provide POP accounts only.
    Yahoo provides a free IMAP account for iPhone customers but there are advertisements included with each sent message. An Apple .Mac account can be accessed as an IMAP account.

  • Audiobooks - Need big help new user

    I bought audiobooks on itunes and I see it in my playlist on my computer but it will not download onto my nano. What's up with that? Any help is appreciated.

    - You will have to contact the person who setup/administers the network/router.  Sometime the default passwords- is written on a sticker attached to the router.
    - Yu can also go to the router and look for the manufacturer and mdel number and then go to the manufactuer's website and downlot the manual for the router.  It will like the default password and how to reset the password.

  • NEED BIG HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! its a WRT54G V6

    I bought this roughter for my son so he can play on his PSP(Playstation Portable) online. We are getting it set up and everything in and all the lights are on and we click next on the setup cd on step 8 and we get a screen on enter the password.There is already a password in the box. So i click enter and the same screen pops up again this happens every time. I have tried admin,and reset the router and entered the ip address in the internet explorer bar and it dont work and clicked run on the windows start menu and found where you check the ip addess it still dont work. Called linksys they dont know what to do either.

    First, try this procedure to reset your router to factory defaults:
    1)  Power down all computers, the router, and the modem, and unplug them from the wall.
    2)  Disconnect all wires from the router.
    3)  Power up the router and allow it to fully boot (1-2 minutes).
    4)  Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5)  Power down the router.
    6)  Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7)  Power up the router and allow it to fully boot (1-2 minutes).
    8)  Power up the computer (if the computer has a wireless card, make sure it is off).
    9)  Try to ping the router.  To do this, click the "Start" button, click on "Run".  In the box that is labeled "Open:", enter the following:  "ping 192.168.1.1"  (no quotes).  A black box will appear.  You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out."   If you see "Reply from ...", your computer has found your router.
    10)  Open your browser and point it to 192.168.1.1.  This will take you to your router's login page.  Leave the user name blank, then in the password field, enter "admin"  (with no quotes).  This will take you to your router setup page.  Note the version number of your firmware (usually listed near upper right corner of screen).  Exit your browser.
    If you get this far without problems, try the setup disk, and see if you can get your router set up and working.  When you get to the password prompt in setup, try to determine if the program is asking for the default password ("admin"), or if it wants a new password.  Also, be sure to leave the user name blank.
    If this does not fix your problem, then there are 3 other possible causes:
    1)  Your firmware has become corrupted.  If you can ping the router, you can probably load it with the latest firmware.  You may need to use the firmware loading program for your router.  Firmware loading programs are usually named TFTP.EXE.  You would need to download both the firmware and the firmware loading program.  Alternatively, you may just want to return the router.
    2)  Your power supply is bad.  Return the router.
    3)  Your router is dead.  Return the router.
    Message Edited by toomanydonuts on 12-30-200604:40 AM
    Message Edited by toomanydonuts on 12-30-200604:40 AM
    Message Edited by toomanydonuts on 12-30-200604:43 AM
    Message Edited by toomanydonuts on 12-30-200604:49 AM

  • Need BIG HELP!!! 6233

    hy everybody! can somebody help me to install old software V3.70 or 4.52 , were I can find it, and how to install i it?! I do not like V4.91. My phone is not working as I hope. I like better old one! PLEASE HELP ME!!! send your answer at "[email protected]"! Thank s!!!!!!!

    Sounds good if this is a contract. Never mind. :-)

  • Need Big Help on my HP Laserjet P1005 via airport express

    I've been using my HP Laserjet P1005 via airport express for about 3 months.
    However, this printer won't act wirelessly anymore.
    It does work fine with USB connected.
    I tried to reset everything, and it's still not working.
    I've read some posts on this forum and installed those three packages, but it seems not works for me.
    By the way, the P1005 driver version is 1.0.6.
    I really hope someone can help me out here. Thanks in advance.

    Yes. I have install the lastest version of HP driver 1.0.6, with Mac OS 10.5.
    Here: http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?os=219&softwareitem=bi- 54970-5&lc=fr&dlc=fr&cc=aa&lang=fr&product=3435676
    But if you update to Show Leopard 10.6, You should use a prior driver HP 1.0.4, if not, the printer would not work. Here:
    http://driverscollection.com/?file_cid=399489231573f9b4ad62f5159c3

  • OMG you updated Firefox last night and wiped out ALL my docs, photos, tabs, downloads, history EVERYTHING. Need BIG HELP ASAP. Tkx. 4/16/13

    My computer shut itself down overnight. The only clue I have is Firefox announcing that it's now all updated. BUT my entire computer has been stripped. In addition to loss of tabs, bookmarks, history, there are no docs, no photos, no downloads, missing software, the entire tree of folders is *gone* including the docs I was working on for a.m. client meetings. Nothing in the trash folder.
    Firefox has messed with its own settings before but today it seems to have viciously reset my computer to nearly naked.
    I realize that you understand how serious this is. Surely it has happened to others. Please, please have a fast and effective solution. Thank you.

    Firefox can't Reset your computer's profile. what most likely happened is you are having a problem with your computer, and it got started up in a default profile (and Firefox probably didn't update last night, it may have given that message because Firefox's profile was gone too).
    Do you get a message like "Windows cannot load the user's profile but has logged you on with the default profile for the system" in the bottom right hand corner when you start your computer? If so, contact a reputable local computer repair company, they can assist with recovering your data.

  • I need your help...I made a very big mistake!

    I really need your help. A friend of mine has an iPod Nano and when I was helping him out on his PC, I accidentally spelled his last name wrong. As in, instead of Smith, I typed Smyth. Anyway, how do I remove that mistake in his iTunes and iPod? It's showing up as the wrong last name! I deleted the wrong name from every registry entry and also uninstalled iTunes and the reset the iPod. He said he resynched the other day and the wrong name came back. How can that be? How do I get rid of this BIG mistake on his Dell PC and iPod while not having it happen again? I'm never hearing the end of it now and so, I come to you for help. Thanks so much! Debbie

    Thank you Jeff for the link! Between your link and Niel's response, I think I've got it. I'm going there today to fix the problem so this friend will leave me alone! (GRIN)
    I really appreciate the help from both of you! Thank you so much! Apple people are such nice people! I think I just might buy myself a Mac and my own iPod!
    Thanks again!
    Namaste'
    Debbie

  • My airport problem has returned big time --Need some Help!!

    Aloha once again:
    I though that this was fixed by simply changing channels on my airport router, but that fix only lasted for a few days, but now it's back and even worse. Let me give you some background on this problem. Here's my original message concerning the problem:
    I have my Airport Router connected to the Internet via DSLcable. I then tie my two computers into the internet via their airport cards. For about 6 months this system has been working just fine. Recently my desktop computer quit listening to the router and can no longer connect to the internet. It shows no signal strength and the name of the network on the Airport is not seen in the "connect to internet" panel. The same Airport works just fine on my LapTop and I am using it right now to get this message off to the internet.
    I have fixed permissions, removed the airport card and cleaned the connector, the antenna plug and removed the system configuration folder from library preferences all to no avail!
    This problem has been hounding me, intermittently, for over a year now What can I do to remedy this??? HELP!!!!
    Dan Page
    Maui, Hawaii
    The suggestion to change channels, that came from this original request, worked but just for a very short time. Now I have to shut down my computer overnight to get connected and then it only lasts for several hours and the connection quits.
    I thought maybe heat was a problem, but the last time it happened I opened the computer and played a large fan right on the card. This did not help. I shut it down for the night and it was fine the next morning for about 2 hours.
    One new data point; if I turn off just the airport on my laptop computer overnight, that will fix the problem for a short time also.
    Still need some help!!!
    Dan

    First, power off both the Time Capsule and AirPort Express.
    Wait a few minutes, then power up the Time Capsule first, and let it run for a few minutes.
    Temporarily, move the AirPort Express to the same room or close proximity to the AirPort Express and power it up.
    If the Express powers up correctly, power it off again and move it approximately half the distance between the Time Capsule and the general area that needs more wireless coverage. Try to minimize obstructions like walls, ceiling, heavy furniture, etc as much as possible. 
    Please report on your results.

Maybe you are looking for

  • Workflow integration with Web Dynpro

    Hi Experts, I have a strange problem.   below i will explain. I created a custom workflow for a custom process.  the workflow contains 3 activity steps and agent is assigned as Initiator. I created a BAPI and called the workflow using SAP_WAPI_START_

  • Can I use autofill - but reserve space on iPhone for non-music ?

    Hi I would like to autofill my Iphone with music but reserve space on the Iphone for other media.  It seems it used to be possible, but I can't find it anymore on Itunes 11 on my Imac.  Any help? THanks! Mike

  • Mass role assignment in solution Manager

    Hi , Some body can please letme know How we can assign roles ( .> 20 roles ) through solution Manager for a user how we can assign same role simeltaniouslly for different users through solution solman

  • Print to Tape problems

    Keep getting the prompt "Check HDV/DV Input" when attempting to Print to Tape. My AV Devices are set to HDV(1440x1080)30p. I'm using the Canon XLH1 as a deck. Have changed firewires and rebooted. The item property of the sequence I'm trying to print

  • Wifi problem on my macbook air 2013

    Hey I m when I connect to my WiFi it stays for sometime n stop I have to restart it for reconnecting it plzz help.me