Can anybody help me and find why that code cause that exception

Hi
I'm standing whole the day finding out why that code cause the following exception but i couldn't so any help
The exception:
Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: Java heap space
package simulation;
import javax.swing.*;
import java.io.*;
import java.lang.*;
import java.math.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import java.util.*;
* @author Enegm
public class Main {
   void InitGui()
       f=new JFrame("Simulation");
       f.setBounds(200,200,300,200);
       f.setLayout(null);
       l1=new JLabel("<html>\u03b2<sub>a</sub></html>");
       l2=new JLabel("<html>\u03b2<sub>s</sub></html>");
       l3=new JLabel("The number of delaies desired");
       t2=new JTextField();
       t1=new JTextField();
       t3=new JTextField();
       b1=new JButton("Simulate");
        Draw d;
        b1.addActionListener(new
            ActionListener()
                public void actionPerformed(ActionEvent event)
                    //Main m=new Main();
                    new Thread()
                        public void run()
                Draw();
               //  Draw1();
                        }}.start();
//                     f1=new JFrame("Q(t) vs t");
//                    float MX=MaxX(QT);
//                    float MY=MaxY(QT);
//                   d=new Draw(MX,MY,QT,BT);
//                    d.setBounds(10,10,580,280);
//                    d.setBackground(Color.WHITE);
//                    f1.setLayout(null);
//                    f1.setBounds(50,0,610,340);
//                    f1.getContentPane().add(d);
//                    f1.setVisible(true);
       l1.setBounds(50,50,30,50);
       t1.setBounds(90,60,30,20);
       l2.setBounds(150,50,30,50);
       t2.setBounds(190,60,30,20);
       b1.setBounds(100,130,100,30);
       l3.setBounds(30,100,175,20);
       t3.setBounds(210,100,30,20);
       f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       f.getContentPane().add(l1);
       f.getContentPane().add(t1);
       f.getContentPane().add(l2);
       f.getContentPane().add(t2);
       f.getContentPane().add(l3);
       f.getContentPane().add(t3);
       f.getContentPane().add(b1);
       f.setVisible(true);
    public Main() {
     * @param args the command line arguments
    public static void main(String[] args) {
        Main m=new Main();
        m.InitGui();
          r=new Random();
//          while(true)
//              if(flag==1)
//                 m.Draw();
//        int NEv;
//        r=new Random();
//        m.Initialize();
//        while(ND<=Integer.parseInt(t3.getText()));
//            NEv=m.TimingRoutine();
//            if(NEv==0)
//                m.Arrival();
//            else
//                m.Departure();
   public void Initialize()
        SS=false;
        NIQ=0;
        TOLE=0;
        ND=0;
        TD=0;
         float temp1=Float.parseFloat(t1.getText());
        EList[0]=-temp1*((float)(Math.log(r.nextFloat())));
        EList[1]=(float)10e6;
        CLK=0;
        QT=new Vector<Point2D>(100);
        BT=new Vector<Point2D>(100);
   public  void Draw()
       System.out.println(""+java.lang.Runtime.getRuntime());
       int NEv;
                 ND=0;
                  Initialize();
        while(ND<Integer.parseInt(t3.getText()))
            NEv=TimingRoutine();
            if(NEv==0)
               Arrival();
           else
                Departure();
                 // System.out.println("ADSDDA SAD");
                   f1=new JFrame("Q(t) vs t");
                    float MX=MaxX(QT);
                    float MY=MaxY(QT);
                    d=new Draw(MX,MY,QT,BT,1);
                    d.repaint();
                    d.setBounds(10,10,600,280);
                    d.setBackground(Color.WHITE);
                    f1.setLayout(null);
                    f1.setBounds(50,0,630,340);
                    f1.getContentPane().add(d);
                    f1.setVisible(true);
                       System.out.println(""+java.lang.Runtime.getRuntime());
    public  void Draw1()
       System.out.println(""+java.lang.Runtime.getRuntime());
       int NEv;
                 ND=0;
                  Initialize();
        while(ND<Integer.parseInt(t3.getText()))
            NEv=TimingRoutine();
            if(NEv==0)
               Arrival();
           else
                Departure();
                 // System.out.println("ADSDDA SAD");
                   f1=new JFrame("B(t) vs t");
                    float MX=MaxX(QT);
                    float MY=MaxY(QT);
                    d=new Draw(MX,MY,QT,BT,0);
                    d.repaint();
                    d.setBounds(10,10,600,280);
                    d.setBackground(Color.WHITE);
                    f1.setLayout(null);
                    f1.setBounds(50,350,630,340);
                    f1.getContentPane().add(d);
                    f1.setVisible(true);
                       System.out.println(""+java.lang.Runtime.getRuntime());
   public void Arrival()
       float AT=EList[0];
       float temp1,temp2;
       temp1=Float.parseFloat(t1.getText());
       temp2=Float.parseFloat(t2.getText());
     Point2D state,state1;
       EList[0]=(-temp1*((float)Math.log((r.nextFloat()))))+AT;
      if(SS==true)
          NIQ+=1;
          state=new Point2D.Float(CLK,1);
        //  state.setLocation(CLK,1);
      else
          TD=0;
          ND+=1;
          SS=true;
          EList[1]=(-temp2*((float)Math.log(r.nextFloat())))+CLK;
          state=new Point2D.Float(CLK,1);
          //state.setLocation(CLK,1);
      state1=new Point2D.Float(CLK,NIQ);
    //  state1.setLocation(CLK,NIQ);
        QT.add(state1);
      BT.add(state);
   public void Departure()
       Point2D state,state1;
       float temp=Float.parseFloat(t2.getText());
       if(NIQ==0)
           SS=false;
           state=new Point2D.Float(CLK,0);
          // state.setLocation(CLK,0);
       else
           NIQ--;
           ND++;
           //temp=TOA.remove(0);
           SS=true;
            EList[1]=(-temp*((float)Math.log((r.nextFloat()))))+CLK;
            state=new Point2D.Float(CLK,0);
            // state.setLocation(CLK,0);
          state1=new Point2D.Float(CLK,NIQ);
           //state1.setLocation(CLK,NIQ);
        QT.add(state1);
        BT.add(state);
   public int TimingRoutine()
       int NE;
       if(EList[0]<EList[1])
       {   CLK=EList[0];
           return 0;}
       else
       {   CLK=EList[1];
           return 1;}
   public float MaxX(Vector<Point2D> pts)
       int len =pts.size();
       float Max=0;
       float temp=0;
       for(int i=0;i<len;i++)
           temp=(float)pts.get(i).getX();
           if(Max<temp)
           Max=temp;
       return Max;
    public float MaxY(Vector<Point2D> pts)
       int len =pts.size();
       float Max=0;
       float temp=0;
       for(int i=0;i<len;i++)
           temp=(float)pts.get(i).getY();
           if(Max<temp)
           Max=temp;
       return Max;
  public static Random r;
  public static JFrame f; 
  public static JFrame f1; 
  public static JLabel l1;
  public static JTextField t1;
  public static JLabel l2;
  public static JTextField t2;
  public static JButton b1;
  public static JLabel l3;
  public static JTextField t3;
  public static boolean SS;
  public static int NIQ;
  public static float TOLE;
  public static int ND;
  public static float TD;
  public static Draw d;
  public static Vector<Point2D>QT;
  public static Vector<Point2D>BT;
  public static Vector<Float>TOA;
  public float[] EList=new float[2];
  public static float CLK;
  public static int flag=0;
class Draw extends JPanel
    public Draw(float x,float y,Vector<Point2D> QT,Vector<Point2D> BT,int dif)
       MX=x;
       MY=y;
       this.QT=QT;
       this.BT=BT;
       this.dif=dif;
    public void paintComponent(Graphics g)
        super.paintComponent(g);
   Graphics2D g2=(Graphics2D) g;
    Line2D L;
    if(dif==1)
    Draw(g2);
    else
          Draw1(g2);
      return;
    public void Draw(Graphics2D g2)
        Line2D L;
        java.text.DecimalFormat dfm = new java.text.DecimalFormat("00.##");
    float tempx,tempy,x,y;
  g2.setColor(Color.BLACK);
  g2.drawLine(0,260,600,260);
  g2.drawLine(10,0,10,280);
  g2.drawLine(578,255,600,260);
  g2.drawLine(578,265,600,260);
   x=(float)((QT.get(0).getX()*580)/MX);
  y=(float)((QT.get(0).getY()*260)/MY);
  int stepx=(int)(580/10+10);int stepy=(int)(260/10);
  String stepx1=""+(int)(MX/10);String stepy1=""+(int)(MY/10);
  String tempc="";
  if((int)(MX/10)==0)
      stepx1=dfm.format(MX/10);;
  if((int)(MY/10)==0)
      stepy1=dfm.format(MY/10);
  int temp=10;double temp1=0;
  for(int i=0;i<10;i++)
      if(temp1>MX)
          break;
      g2.drawString(""+temp1,(int)temp,270);
      temp=temp+stepx;
      temp1=temp1+Double.parseDouble(stepx1);
      tempc=dfm.format(temp1);
      temp1=Double.parseDouble(tempc);
  temp=0;temp1=0;
  for(int i=0;i<10;i++)
      g2.drawString(""+temp1,0,260-temp);
      temp=temp+stepy;
      temp1=temp1+Double.parseDouble(stepy1);
       tempc=dfm.format(temp1);
      temp1=Double.parseDouble(tempc);
   g2.setColor(Color.blue);
  for(int i=1;i<QT.size();i++)
     tempx=(float)((QT.get(i).getX()*580)/MX+10);
     tempy=(float)((QT.get(i).getY()*260)/MY);
     L=new Line2D.Float(x,260-y,tempx,260-y);
      g2.draw(L);
     L=new Line2D.Float(tempx,260-y,tempx,260-tempy);
     g2.draw(L);
//     g2.drawLine(10,10,260,10);
//     g2.drawString(""+QT.get(i).getX(),tempx,260);
     x=tempx;y=tempy;  
     public void Draw1(Graphics2D g2)
        Line2D L;
        java.text.DecimalFormat dfm = new java.text.DecimalFormat("00.##");
    float tempx,tempy,x,y;
  g2.setColor(Color.BLACK);
  g2.drawLine(0,260,600,260);
  g2.drawLine(10,0,10,280);
  g2.drawLine(578,255,600,260);
  g2.drawLine(578,265,600,260);
   x=(float)((BT.get(0).getX()*580)/MX);
  y=(float)((BT.get(0).getY()*260)/MY);
  int stepx=(int)(580/10+10);int stepy=(int)(260/10);
  String stepx1=""+(int)(MX/10);String stepy1=""+(int)(MY/10);
  String tempc="";
  if((int)(MX/10)==0)
      stepx1=dfm.format(MX/10);;
  if((int)(MY/10)==0)
      stepy1=dfm.format(MY/10);
  int temp=10;double temp1=0;
  for(int i=0;i<10;i++)
      if(temp1>MX)
          break;
      g2.drawString(""+temp1,(int)temp,270);
      temp=temp+stepx;
      temp1=temp1+Double.parseDouble(stepx1);
      tempc=dfm.format(temp1);
      temp1=Double.parseDouble(tempc);
  temp=0;temp1=0;
  for(int i=0;i<10;i++)
//      if(temp1>MY)
//          break;
//      if((temp1-(int)temp1)!=0)
//          continue;
      g2.drawString(""+temp1,0,260-temp);
      temp=temp+stepy;
      temp1=temp1+Double.parseDouble(stepy1);
       tempc=dfm.format(temp1);
      temp1=Double.parseDouble(tempc);
   g2.setColor(Color.blue);
  for(int i=1;i<QT.size();i++)
     tempx=(float)((BT.get(i).getX()*580)/MX+10);
     tempy=(float)((BT.get(i).getY()*260)/MY);
     L=new Line2D.Float(x,260-y,tempx,260-y);
      g2.draw(L);
     L=new Line2D.Float(tempx,260-y,tempx,260-tempy);
     g2.draw(L);
//     g2.drawLine(10,10,260,10);
//     g2.drawString(""+QT.get(i).getX(),tempx,260);
     x=tempx;y=tempy;  
     public float MaxX(Vector<Point2D> pts)
       int len =pts.size();
       float Max=0;
       float temp=0;
       for(int i=0;i<len;i++)
           temp=(float)pts.get(i).getX();
           if(Max<temp)
           Max=temp;
       return Max;
    public float MaxY(Vector<Point2D> pts)
       int len =pts.size();
       float Max=0;
       float temp=0;
       for(int i=0;i<len;i++)
           temp=(float)pts.get(i).getY();
           if(Max<temp)
           Max=temp;
       return Max;
public static JFrame f1;
public static JFrame f2;
public static float MX;
public static float MY;
public static Vector<Point2D> QT;
public static Vector<Point2D> BT;
public static int dif;

Hard to tell. Somewhere you're creating objects without ever releasing them. Are you endlessly adding to a list or something?
System.out.println(""+java.lang.Runtime.getRuntime());What are those calls good for?
And may I suggest you to stick to the Java coding conventions (lower-case method and variable names) and generally find better names for your classes and methods?

Similar Messages

  • I need to send an email where the recipient opens the PDF file with a password,   can anybody help me and show me how to do that

    Hello,  I am trying to send an email where the recipient opens the PDF file with a password,   can anybody show me how to do that

    Hi surez,
    To password protect a PDF file, you need to use Acrobat. If you don't have Acrobat, you can try it for free for 30 days. See www.adobe.com/products/acrobat.html for more information.
    In Acrobat, you choose File > Properties when the document is open, and then click the Security tab to set up a password.
    Please let us know how it goes.
    Best,
    Sara

  • Can anybody help me in finding the reasons why the time of email received are different from the one on my macbook which time is correct

    Hi
    Can anyone help me in finding the reason why the date on e=mail reced is different from the one on my MacBook eventhough it is correct
    Thanks

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • Hi, can anybody help my to find those new programs which was showing on the homepage: i message dictation a o

    Hello?
    Can anybody help me use lion?
    i dont find those new programs from the homepage i message and others.

    If your system is only 4 months old than you already had Lion.  Contact support and tell them you thought it was Mountain Lion and ask for a refund.
    http://www.apple.com/support/mac/app-store/contact.html?form=account&topic=Mac%2 0App%20Store%20Account%20and%20Billing

  • Can anybody help with some subtleties to this code?

    Hello,
    I was wondering if anyone could take a look at the code in general for me, which is to go in an 'effects' pedal.  The first while loop is for a footswitch that either reads high or low.  It controls the mode of the pedal.  the first mode is the default, where no signal manipulation occurs, and what comes in the audio input just comes out; the second mode stores data (fundamental frequency, average FFT amplitude from 3 kHz to 5 kHz) from the E string of a guitar, which is plucked after that mode is actuated; the third mode does the same for the A string; and the final mode takes in a note on the E or string, recognizes it as either on the E or A string, and adjusts the frequency content to be in tune based the data stored in modes 2 and 3.  then the new magnitude vector is put through an inverse FFT and output through the DAC and sounded.
    What I'm curious to know is, are there any blatant errors I've made?  Will the signal coming out of the inverse FFT be sounded through the DAC? does it need to be changed from a double to an I32?  I am trying to debug, but right now I'm having problems getting the correct output voltages on the Blackfin (the SPORT 0 pinout doesn't seem to match what is on the board....).
    also, I was wondering if I will lose any phase information on the signal that I get out compared to the signal I put in.  Will it be detectable by ear?  Or would it all sound the same?  along with the phase change for some signals, using an inverse FFT resulted in a loss of amplitude (from about 1 to on the order of 10^-5.  that's a lot!).  but when the test program was played on my computer, the phase change was not noticeable from the output signal, and neither was the magnitude change!  the output played at the same volume as in the input, despite the waveform chart on the front panel showing an amplitude five orders of magnitude less!  can you help explain that to me?  what can I do, will it matter coming out of the Blackfin and into an amplifier?
    i appreciate any input anyone can give me on all this!!  thank you!!
    Attachments:
    102 project.vi ‏287 KB

    Hi noahgrant,
    I've had a look at your vi and can make some suggestions that you can try.
    From what I can see, your while loop with the wait timer of 100 ms and continue if true condition on it (we shall cool this loop 1) will always keep running.
    The other while loop (loop 2) is nested within a couple of case structures and will only run once (false to a continue if true condition). The default case has a different condition and will always run, instead.
    From what I can make of this, loop 2 and all its case structures will only run once (except for case 0, default). WHEN it runs will depend on how it was compiled on the Blackfin - case structure/loop2 may go first or loop 1 will go first.
    If you want loop 2 to go first (and only go once) then you need to link the output of the case structure to the input of loop 1 - this can be done by simply wiring up a boolean to it (data flow rules).
    If you want loop 2 to always be checking the status of the mode then you need to place the whole case structure within a while loop, to run continuously.
    That is a very quick interpretation of what you are trying to do. There are a lot of question marks (missing vi's) and some heavy use of local variables. I would consider using sub-vi's, in particular functional global variables (FGV's).
    I hope that helps.

  • Can anybody help on sending mail through Java Code

    I am trying to send the mail using the java code and I am unable to do it. My code is
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;
    public class EmailExample {
    public static void main(String[] args)
    Socket smtpSocket;
    DataOutputStream os;
    BufferedReader is;
    Date dDate = new Date();
    DateFormat dFormat = DateFormat.getDateInstance(DateFormat.FULL,Locale.US);
    try
    smtpSocket = new Socket("www.gmail.com",80);
    os = new DataOutputStream(smtpSocket.getOutputStream());
    is = new BufferedReader(new InputStreamReader(smtpSocket.getInputStream()));
    System.out.println("Hi How is this?");
    os.writeBytes("HELLO\r\n");
    // You will add the email address that the server
    // you are using know you as.
    os.writeBytes("MAIL From: <[email protected]>\r\n");
    // Who the email is going to.
    os.writeBytes("RCPT To: <[email protected]>\r\n");
    //IF you want to send a CC then you will have to add this
    //os.writeBytes("RCPT Cc: <[email protected]>\r\n");
    // Now we are ready to add the message and the
    // header of the email to be sent out.
    os.writeBytes("DATA\r\n");
    os.writeBytes("X-Mailer: Via Java\r\n");
    os.writeBytes("DATE: " + dFormat.format(dDate) + "\r\n");
    System.out.println("DATE: " + dFormat.format(dDate) + "\r\n");
    os.writeBytes("From: Me <[email protected]>\r\n");
    os.writeBytes("To: YOU <[email protected]>\r\n");
    //Again if you want to send a CC then add this.
    //os.writeBytes("Cc: CCDUDE <[email protected]>\r\n");
    //Here you can now add a BCC to the message as well
    //os.writeBytes("RCPT Bcc: BCCDude<[email protected]>\r\n");
    String sMessage = "Your subjectline here";
    os.writeBytes("Subject: Your subjectline here\r\n");
    os.writeBytes(sMessage + "\r\n");
    os.writeBytes("\r\n.\r\n");
    os.writeBytes("QUIT\r\n");
    // Now send the email off and check the server reply.
    // Was an OK is reached you are complete.
    String responseline;
    while((responseline = is.readLine())!=null)
    {   System.out.println(responseline);
    if(responseline.indexOf("Ok") != -1)
    break;
    } catch (IOException e) {
    e.printStackTrace();
    It is compiling and runnung properly. Please Help me on this.
    Thanks.
    Satya.

    You're mishandling the responses. You terminate if you don't get an "Ok" string, but that's not how success is defined - you should get a 200 code back, typically with an "OK" (not caps) message.
    It doesn't help that you're ignoring all of the server output after each command, so you never find out if anything goes wrong.
    You're also reinventing a wheel. The JavaMail API exists for this: http://java.sun.com/products/javamail/

  • I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks

    I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks.

    Did you already make sure that Apple Mobile Device Service is installed and active on your computer?
    http://support.apple.com/kb/TS1567
    More troubleshooting about your device not recognized in Windows can be found here: http://support.apple.com/kb/TS1495

  • My iPod touch shows that it is charging but it actually doesn't charge and I've tried to restore/ restart it but the only icon is the charging icon with the battery icon with a bit of red fill and a small lightning icon below it. Can anybody help me?

    My iPod touch shows that it is charging but it actually doesn't charge and I've tried to restore/ restart it because the only icon is the charging icon, the one with the battery icon with a bit of red fill and a small lightning icon below it. Can anybody help me and give me solutions before I go to an apple service center?

    Place the iPod Touch into DFU mode.  This will be similer to what the factory would do to install the iOS onto new iOS devices.
    Placing it into DFU mode will allow you to "format" and install the current iOS for that device.
    To place your iOS device into DFU mode.
    First connect you iOS device to you computer.
    Open iTunes if not already open
    Now turn off your iOS device using the power swipe.
    Press the home and sleep button on your iOS device for 10 seconds.
    Release the sleep button but carry on holding down the home button.  For another 10 seconds.
    Your iOS device should now be on DFU.  Click on restore and iTunes will download the lastest iOS for your device.
    Hopefully that sorts it if not, you will have to go to a sevice centre or call Apple Care up and get them to collect it and repair it. (replace it)

  • TS3694 my iphone 3g fails to restore. i have tried to restore many times and in different computers but at the end of the restore process it keeps giving me an error message- 1015. can anybody help? thx.

    my iphone 3g fails to restore. i have tried to restore many times and in different computers but at the end of the restore process it keeps giving me an error message- 1015. can anybody help? thx.

    The phone was jailbroken. That's what that error indicates. You can't get help here. You can't get help from Apple.
    Try Google.

  • I have purchased a ringtone in the iTunes Store for my iPad, and I cannot find the download together with my music. I have received the invoice but I have no product. I am working with iOS6, if that helps. Can anybody help me?

    I have purchased a ringtone in the iTunes Store for my iPad, and I cannot find the download together with my music. I have received the invoice but I have no product. I am working with iOS6, if that helps. Can anybody help me?

    I am confused. Do you mean you found the music, not the tones, or you can't find either?
    If the former, then this is normal. You can't redownload tones from the Cloud.

  • E book" it tells me that the bI have prepared a photobook, made a pdf and when I press "buy the book is missing photos on one ore more pages. The book does not miss any photos or text, all layouts are ok, the background color is ok. Can anybody help me?

    I have prepared a photo book, made a pdf and when I press "buy thhe book" it tells me that the book is missing photos on one ore more pages. The book does not miss any photos or text, all layouts are ok, the background color is ok. Can anybody help me?

    You are missing one or more photos - youprobably have a page background that requires a photo which is behind a page with photos on it - all pages must either have a photo or be a color - if you have a gray background it requires a photo - look through the book carefully and be sure to look at the background on any full page photos - you will find one or more missing photos
    LN

  • Can anybody help with this........I've bought a pack of self adhesive lables with a view to printing them via my printer,  However, I can't find a programme that allows me to do this.  Personnel in the MAC shops don't know either!!  I've a IMAC running on

    I've bought a pack of self adhesive labels that I wanted to print up on my IMAC,running on Snow Leopard.  However, I can't find a programme that will do this, nor can the personnel in the MAC shops.  The labels are stuck on a normal sheet od A4, and I just want to print addresses on them.   Can anybody help?

    Are they Avery Labels? If so there are templates here:
    http://www.avery.com/avery/en_us/Templates-&-Software/Templates

  • When I set up my iPhone, I accidentally put in an apple ID that doesn't exist. Therefor, I don't know the password and can't delete my account from iCloud. Can anybody help?

    When I set up my iPhone, I accidentally put in an apple ID that doesn't exist. Therefor, I don't know the password and can't delete my account from iCloud. I was trying to sync my contacts to my iPad and now it's not possible without iCloud on my phone. Can anybody help?

    Have you tried changing the admin password in System Preferences > Users & Groups > Password   ??
    The Apple ID that is associated with your admin password is noted there.
    message edited by:  cs

  • HT201210 i need help!??? i just tried to update my ipod and now its making me restore it on itunes and it wont complete the restoring process. Its giving the warning that the updated software server couldn't be reached. Can anybody help????

    i need help!??? i just tried to update my ipod and now its making me restore it on itunes and it wont complete the restoring process. Its giving the warning that the updated software server couldn't be reached. Can anybody help????

    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - Try on another computer/network
    - Wait if it is an Apple problem

  • HT1386 I have an ipod nano and would like to sync it to a new computer but when I try to do it, it tells me that i will loose all my music and pictutes in my nano to be replaced with what I have on itunes.  can anybody help?

    I have an ipod nano and would like to sync it to a new computer but when I try to do it, it tells me that i will loose all my music and pictutes in my nano to be replaced with what I have on itunes.  can anybody help?

    See:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    Basically you will have to transfer its contents to the new computer and then restore the iPod and then resync. An iPod can only sync to one iTunes library.
    BTW you posted in the iPod touch forum.

Maybe you are looking for

  • File Content Conversion : File to File Scenario

    hi all, I have a Input file It has the following structure: <?xml version="1.0" encoding="utf-8"?> <n0:rfc_proxy_message_type xmlns:n0="http://kpr.com/sample"> <Name>abhishek</Name> <Age>10</Age> </n0:rfc_proxy_message_type> I use a File to File Scen

  • SRM MDM 3.0 BMECAT Repository Schema

    Hello at all, I have currently run the SRM-MDM 3.0 with the standard respository delivered as archive on the install CD. I still have created some data with the data manager and it runs all very well. Now I want to import a catalog based on BMECat 1.

  • How do I draw a curved line in iCloud Keynote beta?

    I am fairly new to Keynote in general, however I would like to leverage it's capabilities to enhance my projects at work (where I have a Windows7 PC w/o admin rights to install software).  I know you can draw curved lines with the Keynote on a Mac, b

  • RE: Getting ORA-01003: no statement parsed error

    Hi, It looks familiar to some of the error which I encountered before. The situation was a for ... select loop without explicit begin/end transaction. The reason given by Forte consultant is that: The dbsession used by the for ... select loop needed

  • Sudden error message

    i've had my macbook since last september. have had no problems with it. suddenly tonight, i got a message in a blackbox in the middle of the screen that said "You need to restart your computer. Hold down the Power button for several seconds or prss t