Help: URL class and continue downloading

My problem is how to continue downloading binary resource (via HTTP 1.1) after crash. I used URL to retrieve large RAR archive, and it was ok until 1.5 Mb, but suddenly it crashed.
URL class told me, that it is ok. So, I want to make a new session and continue downloading.
Could you help me?

I believe as per HTTP standards , we need to do so.
Please advice.Well first of all I don't see where you are encoding anything. Second what exactly are you encoding?
Please show us the code of where you encode and what you encode.
See you in two weeks.

Similar Messages

  • Transfer it to another PC (with ADOBE DOWNLOAD MANAGER), and continue download from it ?

    When I download a file and stops at the half, may by
    anyway(how?) transfer it to another PC (with ADOBE DOWNLOAD MANAGER
    installed), and continue download from that PC ?

    No. You must start and finish the download from the same PC.
    If your connection speed is not adequate, I would recommend going
    back to Adobe and asking for media to be shipped out.

  • Help required: Classes and class values for Func Loc

    Dear All,
    I have a requirement to get the classes and values associated with a functional location.
    Any idea how to get this data, as in IL03.
    Thanks,
    nsp.

    Hello nsp,
    You can try to check out the Function module ALM_ME_TOB_CLASSES to see how they fetched class, characteristics and their values.
    You can keep a break-point in this module and run MAM30_031_GETDETAIL and check how we can pass the appropriate values.
    However, above FMs are available from PI 2004.1 SP 14 of release 4.6c, 4.7 and 5.0.
    If you are in ERP 6.0, the FM's are available.
    Hope this helps
    Best Regards,
    Subhakanth

  • HELP, date class and parsing input

    I have reviewed many posts in these forums and have found that detail gets the best results so I apologize in advance if this is detailed. I am taking a Java class and am not doing so hot. The last time I programmed was in 1998 and that was Ada, I very soon moved to Networking. I guess those that can't program become networkers, I don't know, but I am frustrated here.
    Any how I am trying to write a rather simple program, but it is the manipulation of the date I am having difficulty with. Here are the requirements:
    Overall Requirements
    Create a class named Date that stores date values and prints out the date in either a pure numeric format or a name and number format (see sample session for format details).
    Date.java class file
    ? Date objects should store the date in two int instance variables ─ day and month, and it should include the String instance variable, error, initialized with null.
    Implement a 1-parameter Date constructor that receives a dateStr string parameter and performs complete error checking on the given dateStr value. The Date constructor is the entity that?s responsible for date error checking. That way, if a Date object is instantiated and if there are no errors, then you?re guaranteed that the Date object holds a legitimate date value. If any kind of error occurs, change the value of the error instance variable to a non-null string value, using an appropriate concatenation of a string constant, input substring, and/or API exception message.
    Constructors use the same exception handling rules as methods: In a try block, include the parsing of the month and day substrings and other error-checking logic that will not work if parsing fails.
    ? Take into account the actual number of days in each month, but assume that there are always 28 days in February.
    ? To extract day and month numbers from the given date string, use String?s indexOf method to find the location of the slash character, and String?s substring method to extract month and day substrings from the input string.
    ? Include a method for printing the date with a numeric format. Use the zero-pad flag in a printf method call to get exactly two digits for each month and day.
    ? Include a method for printing the date with an alphabetic format.
    Include a getError method which returns the value of the error instance variable.
    DateDriver.java class file : In your driver class, include a loop that repeatedly:
    ? Asks the user to enter a date or ?q? to quit. ? If the entry is not ?q?, instantiate a Date object.
    ? If the error variable is null: o Print the date using numeric format.o Print the date using alphabetic format. Otherwise, print the value of the error variable.
    I want to figure this out on my own as much as possible but have until tomorrow night to do so..............I need to understand how I can use Strings indexOf to parse the dateStr so I can locate the /. I see I can use it to find the position of a specified character, but I am not sure of the syntax I need to use. But then once I find the / I need to use the String's substring method to extract month and day. I think I might be able to get that, if I can get the / figured out.
    The below is what I have in my Class and my Driver so far:
    *DateDriver.java (driver program)
    * Christine Miller-Lane
    *Overall Requirements
    *Create a class named Date that stores date values and prints out the date in either a pure numeric
    format or a name and number
    *format (see sample session for format details).
    *DateDriver.java class file
    *In your driver class,
    *????????? If the error variable is null:
    *     ◦     Otherwise, print the value of the error variable.
    import java.util.*;
    public class DateDriver
    Date datevalue;
    public static void main(String[] args)
         Scanner stdIn = new Scanner(System.in);
         while (!xStr.equalsIgnoreCase("q"))
         try
              System.out.println("Enter a date in the form mm/dd ("q" to quit): ";
              value = stdIn.nextLine();
              datevalue = new Date(value);                                                        //instaniate the date object
              System.out.println //print date in numeric format
              System.out.println //print date in alphabetic format
              break;
              catch
              System.out.println("print value of error variable.");
              stdIn.next(); // Invalid input is still in the buffer so flush it.
         } //endloop
         }//end main
    } //end class?
    * Date.java
    * Christine Miller-Lane
    *Overall Requirements
    *Create a class named Date that stores date values and prints out the date in either a pure numeric format or a name
    *and number format (see sample session for format details).
    *Date.java class file
    *????????? Date objects should store the date in two int instance variables ─ day and month, and it should include
    *the String instance variable, error, initialized with null.
    *     ?     Implement a 1-parameter Date constructor that receives a dateStr string parameter and performs complete
    *     error checking on the given dateStr value. The Date constructor is the entity that?s responsible for date error
    *     checking. That way, if a Date object is instantiated and if there are no errors, then you?re guaranteed that the
    *     Date object holds a legitimate date value. If any kind of error occurs, change the value of the error instance
    *     variable to a non-null string value, using an appropriate concatenation of a string constant, input substring,
    *     and/or API exception message.?
    *     ?     Constructors use the same exception handling rules as methods: In a try block, include the parsing of the
    *     month and day substrings and other error-checking logic that will not work if parsing fails.
    *????????? Take into account the actual number of days in each month, but assume that there are always 28 days in February.
    *????????? To extract day and month numbers from the given date string, use String?s indexOf method to find the
    *location of the slash character, and String?s substring method to extract month and day substrings from the input string.
    import java.util.*;
    public class Date
         Scanner stdIn = new Scanner(System.in);
         boolean valid = false
         int day;
         int month;
         String error = null;
         String dayStr;
         String monthStr;
         String dateStr;
         public Date(String dateStr)
    // Look for the slash and set appropriate error if one isn't found. use String?s indexOf method to find the
    //location of the slash character and String?s substring method to extract month and day substrings from the input string.
    // Convert month portion to integer. Catch exceptions and set appropriate error if there are any.
    Integer.parseInt(dateStr);
    // Validate month is in range and set appropriate error if it isn't.
    // Convert day portion to integer. Catch exceptions and set appropriate error if there are any.
    // Validate day is in range based on the month (different days per month) and set appropriate error if it isn't.
    //public void printDate()      //Include a method for printing the date with a numeric format. Use the zero-pad flag in a printf method
                                       //call to get exactly two digits for each month and day.
    //{                                   //Include a method for printing the date with an alphabetic format.      
    //     } // end print report
    //     public getError()
                                  //Include a getError method which returns the value of the error instance variable.
    }//end class Date
    Here is sample out put needed::::::::
    Sample Session:
    Enter a date in the form mm/dd ("q" to quit): 5/2
    05/02
    May 2
    Enter a date in the form mm/dd ("q" to quit): 05/02
    05/02
    May 2
    Enter a date in the form mm/dd ("q" to quit): 52
    Invalid date format ? 52
    Enter a date in the form mm/dd ("q" to quit): 5.0/2
    Invalid format - For input string: "5.0"
    Enter a date in the form mm/dd ("q" to quit): 13/2
    Invalid month ? 13
    Enter a date in the form mm/dd ("q" to quit): 2/x
    Invalid format - For input string: "x"
    Enter a date in the form mm/dd ("q" to quit): 2/30
    Invalid day ? 30
    Enter a date in the form mm/dd ("q" to quit): 2/28
    02/28
    February 28
    Enter a date in the form mm/dd ("q" to quit): q
    I am trying to attack this ONE STEP at a time, even though I only have until Sunday at midnight. I will leave this post and get some rest, then attack it again in the morning.
    Edited by: stillTrying on Jul 12, 2008 8:33 PM

    Christine,
    You'r doing well so far... I like your "top down" approach. Rough out the classes, define ALL the methods, especially the public one... but just sketch out the requirements and/or implementation with a few comments. You'll do well.
    (IMHO) The specified design is pretty crappy, especially the Exception handling
    [The Constructor] performs complete error checking on the given dateStr value. The Date constructor is the entity that?s responsible for date error checking. That way, if a Date object is instantiated and if there are no errors, then you?re guaranteed that the Date object holds a legitimate date value. If any kind of error occurs, change the value of the error instance variable to a non-null string value, using an appropriate concatenation of a string constant, input substring, and/or API exception message.Please allow me to shred this hubris piece by piece.
    [The Constructor] performs complete error checking on the given dateStr value. The Date constructor is the entity that?s responsible for date error checking.Umm... Well I suppose it could... but NO, the constructor should delegate such "complex validation" to a dedicated validate (or maybe isValid) method... which might even be made publicly available... it's a good design.
    That way, if a Date object is instantiated and if there are no errors, then you?re guaranteed that the Date object holds a legitimate date value. If any kind of error occurs, change the value of the error instance variable to a non-null string value ...Utter Bollocks! When passed an invalid input string the, Date constructor should throw an InvalidDataException (or similar). It should not SILENTLY set some dodgy error errorMessage attribute, which is returned later by a "print" method. We tried that in masm, fortran, ada, basic, c, and pascal for twenty odd years. It sucked eggs. And it STILL sucks eggs. Java has a "proper" try/catch exception handling mechanism. Use it.
    I mean, think it through...
      someDate = get a date from the user // user enters invalid date, so someDate is null and errMsg is set.
      report = generateReport() // takes (for the sake of argument) three hours.
      emailReport(someDate, report) // only to fail at the last hurdle with an InvalidDataException!And anyways... such implementation details are traditionally the implementors choice... ie: it's usually between the programmer and there tech-manager (if they're lucky enough to have one).
    Cheers. Keith.

  • Help!! I'm on an unstable internet connection in Nepal (can't be helped or changed), and the download keeps failing. Any way to continue the download when internet reconnects?

    The title should say it all, but to go in more detail, here's the situation:
    I run a production company and I have to deliver a project file to my counterpart in the next two days.  Before I left for Nepal I switched from my desktop to my laptop, and did not realize my laptop had an older version of Premiere installed.  So when I went to open the project file, it would not open it because it says it was created in a newer version and cannot be opened.  So I've been trying and trying and trying to download the new program via the creative cloud desktop app.  Obviously this is going to take a long time with internet speeds in Nepal, and there is absolutely NO way around this.  Developing country, power goes on and off without warning, etc. 
    The thing I'm having a hard time with is that each time my computer disconnects from the internet, then reconnects, the enormously long download has to completely start over again.  I even got as far as 28% on one of my overnight downloads only to have to start over again in the morning when I woke up because the connection wavered in my sleep.  UGH!! 
    My main question is this:  is there anywhere (ANYWHERE!!!) that I can connect directly to the adobe servers to download this program with included internet breaks, kind of like FTP, or Dropbox, or anything of the sort.  It's incredibly frustrating (and kind of a huge Adobe oversight) that if the internet connection breaks during a download, that you have to start over again.  Why can't it pick up again when the connection is restored?  Is there any way around this?  Please please help, I am on a very tight deadline before Xmas and need any help I can get!!
    Thank you for your understanding. 
    Namaste
    Erin

    Erin I am sorry you are facing difficulty downloading the Creative Cloud software.  It can be frustrating when you do not have access to high speed stable Internet.
    You can attempt to download the base installers and updates by following the directions listed at:
    Adobe CC 2014 Direct Download Links: Creative Cloud 2014 Release | ProDesignTools
    All Adobe CC 2014 Updates: The Direct Download Links for Windows | ProDesignTools
    You may want to attempt to utilize some form of download management as the main issue seems to be the stability of your connection.
    There is not currently a method to resume downloads within the Creative Cloud Desktop application.  There is download management included though it may not be enough to compensate for the current Internet connection.  If you are curious you can find additional details on how to resolve download errors at Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html.

  • I have bought a full TV series, but says error when i  try and continue download?

    I bought a whole television series but the last 7 episodes wont download, help?

    Hi there,
    You may find the articles below helpful.
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    -Griff W.

  • Help on classes and methods

    I have a date class with a method which is suppose to return the date value a user type in. But no matter what the input is, it keeps returning 0/0/0. really don't know what to do.
    Please help frustration is setting up quickly.
    import java.util.*;
    import static java.lang.System.in;
    import static java.lang.System.out;
    public class Date1 {
    protected int day;
         protected int month;
         protected int year;
         protected static final int MINYEAR = 1583;
         public Date1(int newMonth, int newDay, int newYear)throws DateOutOfBoundsException
                   if((newMonth <= 0) || (newMonth > 12)){
                        throw new DateOutOfBoundsException(" Month must be in the range 1 to 12");
                   }else{
                   int month = newMonth;};
                   int day = newDay;
                   if (newYear < MINYEAR){
                        throw new DateOutOfBoundsException(" Year : " + newYear + " is too early");
                   }else{
                             int year = newYear;};
         public int monthIs(){
              return month;
         public int dayIs(){
              return day;
         public int yearIs(){
              return year;
         public String toString(){
              return(month + "/" + day + "/" + year);
         public class DateOutOfBoundsException extends Exception {
         public DateOutOfBoundsException(){
              super();
         public DateOutOfBoundsException(String message){
              super(message);
         public static void main(String[] args)throws DateOutOfBoundsException{
              Scanner myScanner = new Scanner(in);
              Date1 theDate;
              int M, D, Y;
              out.print("Please Enter a month to check for its validity: ");
              M = myScanner.nextInt();
              out.print("Please Enter a day to check for its validity: ");
              D = myScanner.nextInt();
              out.print("Please Enter a year to check for its validity: ");
              Y = myScanner.nextInt();
              theDate = new Date1(M, D, Y);
              out.println(theDate);
    Edited by: edersio on Oct 25, 2007 11:44 AM

    ShoeNinja wrote:
    You can't just print the date object. I think what you meant to do was:
    out.println(theDate.toString());
    Nonsense. When you pass this object to out, its toString method will be invoked.
    The problem is in the constructor:
    int month = newMonth;This assigns newMonth to a local variable. To assign to a field, write:
    this.month = newMonth;or just
    month = newMonth;

  • Need help getting handoff and continuity working on iPhone 6 and iPAd

    I currentky have a first gen iPad mini and iPhone 6 Plus on the verizon network. I have been wanting to use the handoff features but don't have some of the options in the settings menu. First, do you have to have a Mac to use continuity? If not, the option to turn on continuity under messages in the settings menu isn't listed for me, so I cant generate the code to type into my iPad. Same goes for calling. I don't have the option in the phone settings to turn continuity on. Looking for some advice, thank you.

    Hi there Jfalzon82,
    Welcome to Apple Support Communities.
    It sounds like you’re running into an issue setting up Continuity with your iPhone 6 Plus and iPad mini, and you’re wondering if you need a Mac to setup them up properly. You don’t need a Mac. Take a look at the article linked below which will walk you through the process of setting up Continuity on your devices.
    Connect your iPhone, iPad, iPod touch, and Mac using Continuity - Apple Support
    Phone calls
    With Continuity, you can make and receive cellular phone calls from your iPad, iPod touch, or Mac when your iPhone is on the same Wi-Fi network.
    To make and receive phone calls, here's what you need:
    Sign in to the same iCloud account on all your devices, including your Mac.
    Your iPhone and your iPad or iPod touch need to use iOS 8 or later. Your Mac needs to use OS X Yosemite.
    All devices must be on the same Wi-Fi network.
    All devices must be signed in to FaceTime using the same iCloud account. This means any device that shares your Apple ID will get your phone calls. Look below for instructions on how to turn off iPhone cellular calls.
    Wi-Fi Calling needs to be off. Go to Settings > Phone. If you see Wi-Fi Calling, turn it off.
    To use Continuity for SMS and MMS with your iPhone and your Mac, iPad or iPod touch
    Your iPhone, iPad, and iPod touch need to use iOS 8.1, and your Mac needs to use OS X Yosemite.
    Sign in to iMessage on your iPhone, your other iOS devices, and your Mac using the same Apple ID.
    On your iPhone:
    Go to Settings > Messages > Send & Receive > You Can Be Reached By, and add a check to both your phone number and email address.
    Go to Messages > Text Message Forwarding, and enable the device(s) you would like to forward messages to.
    Your Mac, iPad, or iPod touch will display a code. Enter this code on your iPhone to verify the SMS feature.
    So long,
    -Jason

  • Entering into site using valid id and password through URL class

    hi......
    i need to access the google adwords editor site. I have account on that but i want to access that by using URL class and then i need to use some data on getting response. It is very urgent for me. Whats the drawback is i am unable to handle the cookies send by the server. Can any one help how to get the response from that by handlin cookies or sessions through program. I have valid id and password.
    Thanks in advance.
    Regards...............
    v.suresh

    Thanks for the response.
    I attempted to remove cookies, but I can not identify any of the cookies on the list with the PrimeVest web site. No PrimeVest, no PVs, nothing that looks like it came from them.
    I have also reported the problem to PrimeVest and their tech did answer. He suggested erasing the browsing history (temporary internet files), which I did with no effect. He also had me check for the correct starting page address, which was OK. He stated that they are aware of a problem and it is on their list. No indication of how far down that list though. His only cure was to use IE for now, which I was already doing. Perhaps he can tell me which cookies to remove.

  • Lose sync and continue with DV Playback

    help
    Lose synce and continue playback and disconnect wheni played DV Format
    with any hard disk

    hello Ahmed
    try to explain the problem with more detail.
    what version of FCP do you use? what DV camera? what hard drive?
    thanks
    Andy

  • I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    Is this happing because the external is formatted to PC and not mac?
    Yes that is correct.
    Will I need to get a mac external hard drive if I wish to continue to save my documents like this?
    If you no longer use a PC you could format this drive for the Mac. However be aware that formatting a drive will erase all the data on it. So you would need someplace to copy the data off this drive to while you did the re-format and then you could copy the data back.
    You could get another drive, format it for the Mac and copy the data to it. Then re-format the original drive and use it as a backup drive. Always good to have backups.
    Post back with the drive type and size of the current drive, if you are doing backups now and how and if you still need to access this drive from a PC.
    regards

  • TS1424 err = 3150 - this issue has started recently and continues to persist with all of my downloads - please help

    err = 3150 - this issue has started recently and continues to persist with all of my downloads - please help

    Is it error 3150 or -3150 ? If -3150 then have you tried the troubleshooting for that error number on this page : http://support.apple.com/kb/TS3297 ?
    "Error -3150"
    This alert is often related to a lost connection to the iTunes Store.
    If you encounter this alert and you have verified you have a connection to the Internet using Wi-Fi, please review AirPort and Bluetooth: Potential sources of wireless interference.
    If the issue persists, and you're using iTunes for Windows, you may need to flush your DNS and remove pop-up or ad-blockers.
    Finally, this can occur due to timeouts caused by security software.

  • HT204053 help with iphone and downloading apps

    I have set up an apple ID. but when I try to download an app from my iphone it just says that my account has not yet been used in the itunes store and wont let me go any further. can you help?

    Raghu do you have access to high speed Internet access at all?  If so then you can download the installation files by following the directions listed at http://prodesigntools.com/adobe-cc-direct-download-links.html.  Please make sure to complete the Very Important Instructions prior to clicking on the download link.
    If you do not have regular access to high speed Internet access then I would recommend that you purchase and continue to use Creative Suite 6.  While it is possible to request DVDa from our support team high speed Internet access is a system requirement.  Without regular access you will face difficulty downloading and applying updates and new versions of the software as they are made available.
    If you wish to request a DVD with the installation files from our support team you can contact them at http://adobe.ly/yxj0t6.
    If you would prefer to cancel your membership and proceed with Creative Suite 6 then please see http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html?start=10.

  • Firefox apears in firewall even after closing all processes and continues to download file

    firefox continues to download files even after closing all the processes, this behavior was noticed by looking at the my firewall activity log. I am using get them all download manger (firefox extension) to download files in firefox. When first time firefox is started after starting computer it doesnt have any problem, but once I open the download manager and start downloading files it never stops.
    I am using : down them all version 2.05 beta on FF 3.6.12
    1. start computer
    2. open firefox
    3. check firewall status (bitdefender firewall running at report level) - no activity noticed
    3. add url to download file in download them all manager
    4. start download - bitdefinder shows firefox accessing internet
    5. pause download
    6. check firewall status - bitdefinder doesn't show firefox accessing internet in process listing but it does show network activity is going on at its peak.
    7. close all firefox windows and remove firefox.exe from task manager
    8. check bit defiender firewall status it continues to run at peak eating up all the network bandwidth
    9. remove rule of firefox from firewall so as it may prompt when firefox try to connect to internet (bit definder firewall is running in report mode for approval for each connection)
    10. as soon as rule removed, bit definder pops up window sayaing firefox is trying to access remote server (same from where the download was earlier started)
    11. Allow the firefox to access it and again it will start downloading in background and bitdefinder shows up internet activity at its peak.

    naah, looks like its problem of firefox, i removed the plugin and tried downloading using the normal download winodw of firefox but same problem, this time it starts picking up item from the download window and continues to download

  • Please help with the URL class

    Hello,
    I am trying to write a Java app that will take a url and download it.
    I believe you can do this with the URL class but I don't understand how to. For example, if the http url location points to a picture file, how would I code the app to retrieve this picture and save it to a specified directory?
    Also, is there a way that my java app could open another program, let's say Microsoft Internet Explorer?
    Please be as specific as possible, thanks!

    You'll see below an example to download a file
    private static String copyFile (String url, String nomFichier){
         // construction du fichier de sortie
         File outputFile = new File(repertoire + "\\fichiers\\" + nomFichier);
         // si le fichier existe d�j�, il ne sert � rien de le t�l�charger !
    if (outputFile.exists())
         return "fichiers/" + nomFichier;
              try {     
         HttpURLConnection connect = (HttpURLConnection)new URL(url).openConnection();
    boolean connected = false;
    while (!connected){
    try {
    connect.connect();
    connected = true;
         catch (java.io.IOException e1) { System.out.print("...Tentative de connection"); }     
    DataInputStream reader = new DataInputStream(
    connect.getInputStream());
         FileOutputStream out = new FileOutputStream(outputFile);
         int length = 1024;
         byte[] buf = new byte[length];
         int offset = 0;
         long offsetCourant = 0;
         int nb=0;
         while ((nb=reader.read(buf,offset,length))!= -1) {
              out.write(buf,0,nb);
         out.close();
         catch (java.net.MalformedURLException e) { System.out.println("pb d'url"); }
         catch (java.io.IOException e1) { System.out.println(e1.getMessage()); }
         return "fichiers/" + nomFichier;
    }

Maybe you are looking for

  • Can't Find CD Music in iTunes But Still On iPod

    Not sure this is iPod problem, but occurred after linking iTunes to a library. I first moved my iTune file to secondary drive to free up space & no problems playing back downloaded iTune songs and CD music copied to iTunes. I hooked up my iPod only w

  • Cisco SCE 8000 rebooting

    Hi! Cisco SCE 8000 working normally while traffic through it not pass. When i connect optical links and start passing traffic throught cisco, i have a problem. SCE watchdog run software reboot with error: 2013-09-30 13:54:40 | FATAL | CPU #000 | A pr

  • Unicode type coersion - revisited

    I am still having a heck of a time with reading and comparing stuff from text files using vanilla AppleScript (I would prefer not to use 3rd party additions or applications). The file contents are basically ASCII text, but they can be stored as eithe

  • How to play RAM on a Mac

    Does anyone know how to play ram files on a Mac? Any help appreciated. Thanks in advance!

  • My itune freezes when I connect iphone and when I remove iphone it shuts down automatically.

    This problem only occurs on my laptop, I tried on my friend's laptop and it worked fine.