Saving a file in the same location as run .jar

I have been playing around with an auto updating client for a project I am working on.
I have been able to get the client to update fine and save a copy of the new client into where ever the original was run from using the below code:
File file;
CodeSource src = HemClientMain.class.getProtectionDomain().getCodeSource();
if (src != null)
     try
          URL url = new URL(src.getLocation(), "UpdatedClient.jar");
          System.out.println("Writing to: " + url.getPath());
          file = new File(url.getPath());
          if (!file.exists())
               file.createNewFile();
          FileOutputStream fos = new FileOutputStream(file);
          BufferedOutputStream bos = new BufferedOutputStream(fos);However when I tried running this on my laptop I get a file not found error:
Writing to: /C:/Documents%20and%20Settings/Rob/Desktop/UpdatedClient.jar
java.io.IOException: The system cannot find the path specified
        at java.io.WinNTFileSystem.createFileExclusively(Native Method)
        at java.io.File.createNewFile(File.java:883)
        at Client.ClientGameThread.saveNewClient(ClientGameThread.java:584)
        at Client.ClientGameThread.gameClientFinishedUpdating(ClientGameThread.java:564)
        at Client.ClientListenThread.dealWithPacket(ClientListenThread.java:96)
        at Client.ClientListenThread.listen(ClientListenThread.java:74)
        at Client.ClientListenThread.run(ClientListenThread.java:38)It's clearly something to do with the location and the path not being correct, as if I move the client to say .. c:/ and run it it updates and saves fine.
Is it something to do with the spaces in between document and settings? And if so how do I stop this from happening? Is there another way I can accurately find the path to the current jar file and save a copy there?
I used to do it via this code:
String fileLocation = System.getProperty("java.class.path");     However I now have more than one thing in my classpath and this doesn't produce one path but a combination of them all ... which is not really what I want. There must be a nice way to do this!
Any help / suggestions appreciated. Any further questions I will attempt to answer my best :)

iexus wrote:
I have been playing around with an auto updating client for a project I am working on. ...Launch the app. using Java Web Start. It has update ability built in, and will save you a lot of headaches.

Similar Messages

  • I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location?

    I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location? If I use add file / folder to library, it scans the folder and then makes a copy of any file that is not in my library in the exact same location; I recal in older versions of iTunes being able to just drag my media folder into my library and it would update missing links.

    Only the songs that are connected to iTunes will be copied when you consolidate to a new folder.
    Splitting the media folder away from the usual location makes it harder to move iTunes in the future.
    Are you go move everything back once you've tidied up or are you going to leave it that way? Either way I'd recommend you create an iTunes folder at the new location, an iTunes Media folder inside that, and consolidate to this new iTunes Media folder. You should also use the option File > LIbrary > Organize Library > Rearrange files in the folder "<Media Folder"> if you have not already done so.
    tt2

  • 2 different files in the same location?

    When we upload files they go all in one folder.
    The first editor calls his graphic "Picture 1.png" (wonder where that came from..)
    Sure sometimes before the item gets deleted another one will upload an completly different picture with the same filename.
    The thing that it different between the 2 would be the Asset ID. So I was wondering if there is a way to make folders with asset IDs in the location where everybody uploads there stuff to.
    To tidy up on the long run I guess we just would need to delete the empty folders (as the content has been archived).
    How would I do this? How do other people deal with the same filenames for different files? It even happens within the same production so the solution to create an subfolder for each production (read this a while ago) does not work for us.
    I know that for future projects we will tell people to use more describing filenames (but even there: there might be two different kitchens called the same..) but I also talk about a huge, messy archive to migrate..
    thanks
    tobi

    Let me rephrase things a bit as I used the term Excel chart  to literally. We create charts in SSRS. We then use a query string that includes "rs:command=render&rs:format=Excel" to get the chart into Excel. The "chart" in Excel is really just an
    image and the associated data table is the cells filled in with the data. We then "select" the area that encompasses all of these objects and paste that into the PowerPoint slide.
    Our source folder structure is as follows (note that I while I am being generic, the Ecel file names are the same between folders:
    Folder A: File1.xls, File2.xls, File3.xls ..... File40.xls
    Folder B: File1.xls, File2.xls, File3.xls .....File40.xls
    This goes on for 8 folders but can be as many as 30
    The routine we use to create the xls file from the SSRS chart names the xls file and puts it in the correct folder.
    The idea was we would create a template chart set in PPT for folder A and then create copies of the PPT and change the links to point to Folder B, etc.
    We have ensured that all Excel Documents are closed when we try to do an update.
    We are also getting the following error and I'm paraphrasing: Cannot open multiple instances of a file of the same name even if it is in a different location. This occurs when doing an update links when we don't get the initial error message I listed first.
    If we change the names of the files in each folder: i.e. FolderAFile1.xls, FolderAFile2.xls, etc then we can do the update links. This is time consuming as the SSRS exports are done by the end users and we are the developers trying to create a reusable solution.
    One other issue we are seeing which I hope you can address is that when we are getting the update links to work, the process opens up each Excel file THREE times. It takes almost 15 minutes to update a PPT with 18 linked xls files.

  • Question about auto-saving multiple files with the same template

    Is there any way to do this? The template will never change - but I will need to save it as a new file each time I open it. Just want to know if there is an automatic way to do this when the template is opened each time? Preferably numeric, starting from any number. I suppose I can just save each file myself - but as it gets up into the thousands of files - I'm not going to want to.
    It would be really cool if it could auto-save the file, assign it a number, and then place that number in the top corner of the saved document.
    If anyone can help - let me know. C.

    OK. First add a text field to the document, say "text1". You probably want it to be read-only. You can duplicate it to all pages if needed. Then open the template document, open the interactive JavaScript console (Ctrl+J), and enter the following code:
    // Interactive Console JavaScript
    // Get the folder this file is in
    var folder = path.replace(documentFileName, "");
    // Save multiple copies (from 1 to 9)
    // with the number in the text field
    for (var i = 1; i < 10; i += 1) {
        getField("text1").value = i;
        saveAs(folder + "template" + i + ".pdf");
    After you paste the code, highlight the lines and press Ctrl+Enter (or the Enter key on the numeric keypad) and Acrobat will save multiple copies to the same folder as the template. Replace "text1" with the name of the field you've set up and "template" with the name you want the copies to have before the number.

  • Can I combine two methods of code to load various SWF files into the same location

    I presently have a set up where a large SWF file brought on the stage by clicking small icons from the scrollable thumbnail menu on the bottom of the stage. All of it happens at the same frame with .xml loading file.
    Here is the code for constructing the ImageLoader(for thumbnails) and SWFLoader for (bigger SWF files)
    [CODE]
       function _xmlCompleteHandler(event:LoaderEvent):void {
       _slides = [];
       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.
       var imageList:XMLList = xml.image; //In the XML, we have <image /> nodes with all the info we need.
       //loop through each <image /> node and create a Slide object for each.
       for each (var image:XML in imageList) {
        _slides.push( new Slide(image.@name,
              image.@description,
              new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",
                   name:image.@name + "Thumb",
                   width:_THUMB_WIDTH,
                   height:_THUMB_HEIGHT,
                   //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                   //x:260, y:320,//doesn't work here but works in line 69
                   scaleMode:"proportionalInside",
                   bgColor:0x000000,
                   estimatedBytes:13000,
                   onFail:_imageFailHandler}),
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
                    name:image.@name + "Image",
                    width:_IMAGE_WIDTH,
                    height:_IMAGE_HEIGHT,
                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                    x:0, y:144,
                    scaleMode:"proportionalInside",
                    bgColor:0x000000,
                    estimatedBytes:820000,
                    onFail:_imageFailHandler})
    [/CODE]
    Here is what I would like to resolve. I have another section on the site with an image collage. Every image is a button. I want to script this each image on click to go to the label with ImageLoader and SWFLoader AND TO OPEN A UNIQUE SWF (ASSOCIATED WITH AN IMAGE CLICKED) ON THAT PAGE
    Previously this is what I did to achieve it. I would specify a String:
    [CODE]
    var sourceVar_ProductsPopUps:String;
    [/CODE]
    and then all my buttons will have their unique SWF assigned for them which opens at another labeled section ("prdctsPopUps" in this example):
    [CODE]
    function onClickSumix1PopUp(event:MouseEvent):void {
      sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
      gotoAndPlay("prdctsPopUps");
    [/CODE]
    Then in the "prdctsPopUps" section I would specify that var string to bring up SWF files. The value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the previous page.
    [CODE]
    loaderProductPopUps = new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]
    But I need both of them to be working at the same time. First there is a sectionA from where a user can navigate to specifically targeted SWF to section B's SWFLoader. Then in the section B a user has an option to bring up other SWF files into SWFLoader from the scrollable thumbs menu. Is there a way to combine these two lines into one:
    [CODE]
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
    [/CODE]
    and
    [CODE]
    new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]

    Thanks for looking into my issue.
    Unfortunatelly I am not so advanced in AS and do not complitely understand the logic of the problem. I will try to decribe my set up more precise.
    So, my main flash file is broken into labeled sections on the main time line.
    One of the sections is "Applications" It has an animated collage of images. Each image acts as a button and once clicked brings a user to a section called "ApplicationsPopUps".
    "ApplicationsPopUps" section has small image thumbnails scroll menu at the bottom of the screen and a large SWFLoader in the middle of the screen. User can click on an image in the thumbnails scroll menu and a corresponding SWF file will load in the middle of the screen in SWFLoader. User can click on left/right navigation buttons and preceeding/following SWF file will load in SWFLoader.
    Everything works fine (with your previous help)
    Here is the working code for the ImageLoader and SWFLoader (please let me know if you need additional code on the page):
    function _xmlCompleteHandler(event:LoaderEvent):void {        _slides = [];       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.        var imageList:XMLList = xml.image; //In the XML, we have  nodes with all the info we need.        //loop through each  node and create a Slide object for each.       for each (var image:XML in imageList) {         _slides.push( new Slide(image.@name,               image.@description,               new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",               {                    name:image.@name + "Thumb",                    width:_THUMB_WIDTH,                    height:_THUMB_HEIGHT,                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                    //x:260, y:320,//doesn't work here but works in line 69                   scaleMode:"proportionalInside",                    bgColor:0x000000,                    estimatedBytes:13000,                    onFail:_imageFailHandler}),                 new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",                   {                     name:image.@name + "Image",                     width:_IMAGE_WIDTH,                     height:_IMAGE_HEIGHT,                     //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                   x:0, y:144,                     scaleMode:"proportionalInside",                     bgColor:0x000000,                     estimatedBytes:820000,                     onFail:_imageFailHandler}) 
    Thumbnails in the section "ApplicationsPopUps" and images in the image collage in the section "Applications" represent the same photographs. So when a user clicks on one of the images in "Applications" section it would be natural that that image will load in the "ApplicationsPopUps" section. However "ApplicationsPopUps" section presently has a working code (as sampled above) It looks too complex for me and I do not know hot to implement this feature. I do want to keep the functionality of the thumbs image scroller in section "ApplicationsPopUps" as it is now. But I want to add that when a user click on an image from section"Applications" then that particular SWF file will load in SWFLoader in section "ApplicationsPopUps" and then the present functionality can as well be exectuted. Presently it just opens on a first image in xml order.
    P.S. I see that you had a download link in your answer. How did you do it? I could also upload a small sample file with my problem. This way you could see all the set up right away.

  • InDesign 2014 files don't save in the same location as the original file

    The behavior in InDesign CC was to automatically save the file in the same location. I understand this is a new version, and saving my InDesign 2014 files should open a save dialogue. But I don't understand why InDesign seems unaware of the file's location. In this new version I have to navigate to the files location to overwrite, and that is taking extra time that the previous version did not require. Is there a way to restore the previous behavior. I have looked in Preferences, but I can't find a way to revert to the old behavior. Any advice would be appreciated. -Thanks.

    As Peter noted, it has ALWAYS been this way. It’s a one time thing.
    You can file a feature request here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Make sure to file a complete description along with a solid business case as to why most users would benefit.

  • Downloading several files to the same client directory

    Hello Everybody !
    My RAP application generates three files : a binary one for microcontrollers programming purpose, a plain text one which is a readable form of the first one, and finally a properties file used to restore the application settings. All three files have to be stored in the same directory on the client machine and this is done by using a service handler as described here : https://www.eclipse.org/rap/developers-guide/devguide.php?topic=resources.html&version=3.0
    This mechanism works fine, but pops up three Save File dialogs while one would be sufficient since I could get the destination directory from the first download. Is it possible to save more than one file to the same location with only one Save File dialog? How would you implement this?
    Thanks a lot in advance for your help!
    Georges

    Try using:
    tell application "Finder"
    set path_2 to quoted form of POSIX path of (folder of (path to me) as alias)
    end tell
    tell application "System Events"
    do shell script "curl 'ftp://user:password@server//www/htdocs/current/l.txt' -o " & path_2 & "l.txt"
    end tell
    (41158)

  • Load multiple files using the same data load location

    has anybody tried loading multiple files using the same load locations. I need to do this as the data in these multiple files will need to be exported from FDM as a single export file. the problem i am facing is more user related. since these files will be received at different points of time, users will need a way to tell them what has been loaded and what is yet to be loaded.
    is it possible to throw a window on the web broser with OK and Cancel buttons from an event script?
    any pointers to possible solutions will be helpful

    was able to resolve this. the implementation method is as follows
    take a back up of previously imported data in the befcleardata event script. then in the beffileimport event append the data to the import file. there are many other intricacies but this is the broad implementation logic. it allowed my users to load multiple files without worrying about append or replace import type choices

  • I like to have the option of saving downloaded files in my designated locations instead of in the 'downloads' folder. How do I do this?

    # Question
    I like to have the option of saving downloaded files in my designated locations instead of in the 'downloads' folder. How do I do this?

    There are also other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r45
    # Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • Does anyone know where the iWeb data files are located or what they are called?  I can't find them.  I looked in Finder for files named the same as my website, but found nothing.  Any help would be appreciated.

    Does anyone know where the iWeb data files are located or what they are called?  I can't find them.  I looked in Finder for files named the same as my website, but found nothing.  Any help would be appreciated.

    If you erased or replaced your hard drive since iWeb was cancelled, then they are gone. Otherwise, if you have maintained backups then check those.
    Usually such files are in the /Home/Library/ folder or a sub-folder.
    Exposing the /Home/Library/ Folder
    Pick one of the following methods:
    A. This method will make the folder visible permanently. Open the Terminal application in your Utilities folder and paste the following at the command prompt:
    chflags nohidden ~/Library
    Press RETURN.
    B. Click on the Desktop, press the OPTION (⌥) button, select Library from the Finder's Go menu.
    C. Select Go To Folder from the Finder's Go menu. Paste the following in the path field:
    ~/Library
    Press the Go button.

  • Saving a mp3 file with the same bitrate as the original

    When I import an mp3 file at a bitrate of f.i. 196 kbps and I alter this file you can choose two options. "save" and "save as". If I choose "save as" I can choose the bitrate etc.
    If I however choose the "save" button you should think that it will save the file at the same bitrate as the original. This is not the case. It will only save the file at 128 kbps no matter at what bitrate the original file is.
    I think that Adobe can simply adjust this in an update or did I miss something so I can set this myself. Currenly I use the demo version and I am thinking of buying this program because it is very good for what I do and it resembles my old Audition a lot except the lack of multitrack recording.

    Hi Piet and Ray,
    This is a bug that affects re-encoding an mp3 and overwriting the original. While we don't recommend re-encoding compressed audio data due to generative quality loss, we regret that in this scenario it also introduces bitrate loss.
    If you choose "Save As..." instead of "Save," you should be able to export your file as an mp3 at the bitrate of your choice.
    Unfortunately, we discovered this bug after Soundbooth had been sent to the manufacturer. We have fixed it internally and if we provide an update, it will be included. I'm sorry about this bug and hope the workaround is not too much trouble.
    Thanks,
    Durin

  • I-tunes was saving my music to the wrong location.

    If I choose the option to have i-tunes organize my media and consolidate my collection, can I delete the files in the original location safely? As I understand it is now copying them to the correct location and I can't afford the space in the area (partition) where it was saving them in error....
    And will it now save any new files in the right location?
    Thanks in advance for your help!

    To answer the second question first, iTunes uses the folder specified in Edit > Preferences > Advanced as the iTunes Media Folder. Any file added (by purchasing from the iTunes Store, ripping from CD, using the conversion process, added as result of the "Copy..." parameter, or by means of the Automatically Add folder) will go there.  So, yes.
    And about Consolidate:  it goes thru your library, and any library entry whose track is not already in the designated folder will have a copy placed there.  After it is done, iTunes does not need the other files.

  • Closing and saving spreadsheet changes in the same document?

    Closing and saving spreadsheet changes in the same document? There are several drop-down options for saving a spreadsheet in Numbers except saving to the existing spreadsheet. Excel has a 'save' or 'save as' options what are the equivilents in Numbers?
    Thanks for any response,
    Larry

    Hi Larry,
    Menu > File > Save (command s) will save the document. If it has not already been saved, it will offer "Untitled" as the name. Type a name and choose a folder.
    Numbers (and any app on OS X Mavericks) has Menu > File > Save, and Menu > File > Duplicate.
    To see Save As... hold down the option key when using the File Menu. "Duplicate" will change to "Save As..."
    Regards,
    Ian.

  • OracleXE 10g cannot be installed in the same location as Client.

    hello!
    i would like to install XE DB (of course in silent mode) from a java application, but i always get this error in c:\WINDOWS\OracleDatabaseXEServerInstall.log file:
    "Oracle Database 10g Express Edition cannot be installed in the same location as Oracle Database 10g Express Edition Client."
    in java i call it like this:
    String cmd = "f:\\db\\OracleXEUniv.exe /s /f1\"f:\\db\\OracleXE-install.iss\" /f2\"c:\\OracleXE-install.log\"";
    int ret = Runtime.getRuntime().exec( cmd ).waitFor();
    i do not even need db client, but as far as i know it cannot be unset in parameter file (OracleXE-instal.iss).
    otherwise if i start install it in silent mode in console then it is executed without failure...
    so i need to unset client installation or just to avoid this failure...
    any idea?
    anybody can help me out?
    pilán

    Any adjustments to the installer file? Maybe a previous run has already completed (or didn't complete) and items need cleanup before it can install sucessfully?
    XE doesn't support mulitiple installations on the same host nor more than one instance running in the install directory, perhaps changing the szDir=C:\oraclexe\ to a different drive and/or directory might help. But if an oracle installation is already on the box, maybe it would have to be the last oracle install ... :(

  • QuickTime Player 10.1 no more includes the ability to save a movie file in the same format as the original movie after editing it? No, it doesn't!

    Since upgraded to Lion, I have to wait for QuickTime Player 10.1 to "CONVERT" every file that I edited in it.
    Yes, it might save some disk space for me.(Which is not always the case though.) But it also takes almost 10 times or more as it did when back on Snow Leopard with QuickTime Player 10.0 there I could save any file in the same format as the original movie WITH NO NEED TO CONVERT IT.
    Now I have to wait like 10 minutes to delete just a few frames.(The time it takes depends upon the original size of that movie. The larger the longer.) And guess what? If you have two clips originally split up from a movie and sperately getting saved(converted actually) with a loooooooot of time, and you naively added one of them to the other's end and then saved the finished one. It converts AGAIN! Doing so back on Snow Leopard with QuickTime Player 10.0 only takes you even a few seconds only!
    Seriously, are we eating Apple or dirt this time?

    My existing movies are all the following types straight from FinalCut
    Apple Intermediate Codec, 1920 × 1080, Millions
    16-bit Integer (Little Endian), Stereo, 48.000 kHz
    This particular movie is 6.66 Gb
    The new Quicktime player in OS Mavericks converts these to the following format:
    Apple ProRes 422, 1920 x 1080
    Linear PCM, 16 bit little-endian signed integer, 2 channels, 48000 Hz
    And a movie size of 6.48 Gb
    It seems obvious from other forum posts this is a planned move so that everything is the "new mobile device" ready state/format. To use Marc Speth's post as material....
    https://discussions.apple.com/message/23749558#23749558
    this is probably about dumbing down desk top OS to that pf iPhones and iPads. This is not what I paid good money to own a Mac Book Pro for....
    Today I rolled all the back to Snow Leopard. Really good move...... All those new features hey? I lost the ability to work in spaces and of course the whole Quicktime debacle.
    The rolling back process was easy, restored from a point prior to installing Lion and Mavericks and the only issue was my iPhoto libraries. Thank my stars that I still had back ups that I had not converted yet.... viva la Mavericks...NOT. Apple can keep it.
    Unsure if you are just venting or if there is supposed to be a question here. Basically, I assumed this to be Apple's idea of an improvement. That is, I really believe the ProRes 422 codec is a better intermediate codec than the AIC codec but most of my old HDV camcorder family tapes were imported by iMovie (for compatibility with my wife's non-FCP computer configuration) and, like your content, is/remains stored as AIC/PCM MOV files. At first I thought this might be a generalized change affecting all QT X based apps but when I went to check the latest iMovie v10.0 update, became confused when I noted that AIC source files were not automatically updated to ProRes 422 and continue to play natively in the iMovie source media viewer.
    I guess this is supposed to be a logical evoluption and we were supposed to have seen the "handwriting on the wall" dating back to when Apple's first released the free ProRess "player" ProRes 422 codec. Still, it would have been nice if Apple had given some warning during the last few years so users could plan and prepare for such a drastic change. For the moment, I am just thankful that AIC remains, at least temporarily, supported nativelyby the iMovie video editor under Mavericks. Thank goodness for small favors.

Maybe you are looking for

  • Dynamic Hyperlinks in Acrobat Form

    Hi I am creating a suite of forms in Acrobat, in which I will need a number of hyperlinks.  I can see how to set up a standard hyperlink using the normal form edit functionality, but what I am looking for is a little away from the norm and will need

  • Exported Interdemia Text Inedxed data from 8.1.7 to 8.1.6

    Hi all I get something interesting problem....I setup Intermedia Text on my DB1 running Oracle 8.1.6, index setup well and query works well. For some reason, I exported some Intermedia Text indexed data from aonther DB2 (8.1.7) and import to the one

  • User registration and editing posts

    Hi everyone, I have a site that people can register on and post there information. I am using php and mysql. I want people to be able to EDIT their information they posted but ONLY their information, noone elses. the user registration works great and

  • New iPhone - How do I move everything from my old one?

    In my left hand I'm holding my old iPhone 4. In my right hand I'm holding my new iPhone 4S. How do I do to make an identical copy from my old phone to the new? I'm asking you because I have had a lot of trouble with this recently, and now I want to d

  • Tunes do not appear on ipod

    I have had my new ipod 30gb video, for under a week, everything was going fine. I connected to my ipod and have lost all my music, They all appear in Itunes, my ipod updates but the music doesn't appear on the ipod. I have uninstalled and re-installe