Problem with Writer.flush() appending extra character

I have written a simple file copy that does the following:
     public static void copy(File source, File dest) throws IOException
          FileReader fr = new FileReader(source);
          FileWriter fw = new FileWriter(dest);
          try
               char[] ch = new char[(int)source.length()];
               fr.read(ch);
               fw.write(ch);
          finally
               fr.close();
               fw.close();
It works fine, and has done for some time.
For some reason, in a recent data collection, I have 3 files out of about a hundred, where the following behaviour occurs.
The char array is written to the file fine. For some reason when fw.flush() is called (i have tested this and confirmed that it is the call to flush() that is causing it) it appends a char to the end of the file with a value of -1.
This is causing merry havoc with my XML parser.
Can anybody tell me how to stop Writer from adding a -1 to my file?
This is on java 1.4.2 currently.

               char[] ch = new char[(int)source.length()];File.length() returns the number of bytes in the file.
However, you're loading that file via a Reader, which converts those bytes into characters using some encoding method. Depending on the encoding, the number of characters produced may be completely different from the number of bytes read. It's also possible that the bytes read are not valid with the encoding.
If you're just copying files, use FileInputStream and FileOutputStream. Better, download the Jakarta Commons IO library, and use their already-tested methods.
If you're working with a JAXP XML parser (ie, what comes with JDK 1.4 and above), create your InputSource from a FileInputStream. That will let the XML parser use the encoding specified in the file, ignoring whatever your JRE's default encoding is.
If you're planning to work with the raw text, then you're going to have to learn about character encodings. I don't have a tutorial link handy, so either Google for one or start with the documentation for java.nio.charset.Charset.

Similar Messages

  • Problems with write to measurement

    My project group has some problems with the write to measurement VI.
    Firstly, for each of the SOC/Voltage...each file only has one value, how to make all value inside one file?
    Secondly,How to make all the different  parameters, such as SOC1, SOC2, Voltage1, Voltage2, appear in one excel file for easier reference?
    Attachments:
    TwoBatteries.vi ‏246 KB

    Look at your settings for the Write to Measurement File.  You are telling it to save to one file, and then use next available filename.  Try append to file.
    Also, use Merge Signals to combine the 4 and write to a single Write to Measurement File.  Right now you have 4 identical ones with the same file name.  They are stepping all over each other.
    When using the Write to Measurment File, try opening up the help file and reading it o understand what each setting does.

  • Data format problem with Write to Spreedsheet File

    I have a problem with the data format with Write to spredsheet file.
    I have an N*3 array, where the 3 elements in each row should has different length. When I used Write to spreedsheet file,
    it can only save the three data in one format. How can I save them in the format of "%0.8f %0.3f %0.2f"?
    Thanks for your help.

    Hi powerplay,
    another solution may be to convert column-wise using "number to fractional string", then interleaving resulting arrays and again using "array to spreadsheet string" (with "space" as separator).
    Many ways lead to Rome
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Problems with write latency

    Hi to all storage gurus,
    One of our disk systems (HP EVA8000) has been quite busy lately. HP has
    spent days analyzing the situation and the result of the analysis was
    that the disk system is ok but there are occasionally up to 2000 ms
    write latencies. According to them this is not out of ordinary and
    operating systems should be able to handle the situation.
    The problem is that Netware seems not always to be able to handle such
    write latencies and the clustered services may go to comatose when the
    write latency is so high. This does not happen on every such occasion,
    but too often anyways. Netware is the only operating system which has
    any problems with our EVA8000. In this particular EVA we we have roughly
    200 hosts, out of which about 10% are Netware. Thus is seems rather
    clear that something is wrong with our Netware setup or Netware itself,
    we just dont have any clues what.
    All servers have NW6.5 SP8, and HP supported Qlogic HBA's with latest HP
    supported bios and drivers.
    In our Startup.ncf we have:
    set multi-path support=on
    LOAD SCSIHD.CDM AEN TOFACTOR=5
    LOAD QL2X00.HAM SLOT=201 /LUNS /ALLPATHS /PORTNAMES /MAXLUNS=12
    /XRETRY=400 /XTIMEOUT=60 /BACKOFF
    LOAD QL2X00.HAM SLOT=202 /LUNS /ALLPATHS /PORTNAMES /MAXLUNS=12
    /XRETRY=400 /XTIMEOUT=60 /BACKOFF
    The error messages are as follows:
    18.06.2009 15.30.14 : COMN-3.27-34
    Severity = 5 Locus = 2 Class = 6
    NSS-2.70-5005: Volume KOTI12/USER2 user data write
    (20204(zio.c[2301])) to block 122610663(file block 4810)(ZID
    146302323) failed.
    18.06.2009 15.30.15 : COMN-3.27-1092
    Severity = 4 Locus = 3 Class = 0
    NSS-3.00-5001: Pool KOTI12/SARKA is being deactivated.
    An I/O error (20204(zio.c[2279])) at block 29505990(file block
    104772)(ZID 3) has compromised pool integrity.
    Any ideas what could be wrong?
    Best regards,
    Jonne Viljanen
    University of Helsinki

    Hi JJ,
    Thanks for your insightful answer. We are using execution throttle 16 on
    almost all hosts. However HP suggested to increase the execution
    throttle on Netware hosts to 64, since their IO to disk system is very
    small and thus increasing the value would not cause problems to other
    hosts. Increasing the execution throttle did not solve our problems.
    What value are you using for execution throttle?
    Cheers,
    JV
    > Hi,
    >
    > We had some similar problems (many hosts on an EVA 8000) but only with a
    > disk failure. A disk failure causes latency and thus resulting in node cast
    > out, comatose services or dismounted volumes. And since a san is still is a
    > shared disk system /EXECTHROTTLE might be something to look into. If a
    > couple of hosts have the execution throttle set to high (like 256) then they
    > will fil up the controllers queues first leaving no room for other hosts.
    > We also we played around with the /XTIMEOUT parameter. but not as high as 60
    > (ours is 8 on a 8 node cluster) because the cluster software also needs some
    > time to make a good judgement.
    >
    > Cheers,
    > JJ
    > .
    >
    >
    >
    >
    > "Jonne Viljanen" <jonne.viljanen@rmv_this.helsinki.fi> wrote in message
    > news:[email protected]...
    >> Hi to all storage gurus,
    >>
    >>
    >> One of our disk systems (HP EVA8000) has been quite busy lately. HP has
    >> spent days analyzing the situation and the result of the analysis was that
    >> the disk system is ok but there are occasionally up to 2000 ms write
    >> latencies. According to them this is not out of ordinary and operating
    >> systems should be able to handle the situation.
    >>
    >> The problem is that Netware seems not always to be able to handle such
    >> write latencies and the clustered services may go to comatose when the
    >> write latency is so high. This does not happen on every such occasion, but
    >> too often anyways. Netware is the only operating system which has any
    >> problems with our EVA8000. In this particular EVA we we have roughly 200
    >> hosts, out of which about 10% are Netware. Thus is seems rather clear that
    >> something is wrong with our Netware setup or Netware itself, we just dont
    >> have any clues what.
    >>
    >> All servers have NW6.5 SP8, and HP supported Qlogic HBA's with latest HP
    >> supported bios and drivers.
    >>
    >> In our Startup.ncf we have:
    >>
    >> set multi-path support=on
    >> LOAD SCSIHD.CDM AEN TOFACTOR=5
    >> LOAD QL2X00.HAM SLOT=201 /LUNS /ALLPATHS /PORTNAMES /MAXLUNS=12
    >> /XRETRY=400 /XTIMEOUT=60 /BACKOFF
    >> LOAD QL2X00.HAM SLOT=202 /LUNS /ALLPATHS /PORTNAMES /MAXLUNS=12
    >> /XRETRY=400 /XTIMEOUT=60 /BACKOFF
    >>
    >>
    >> The error messages are as follows:
    >>
    >> 18.06.2009 15.30.14 : COMN-3.27-34
    >> Severity = 5 Locus = 2 Class = 6
    >> NSS-2.70-5005: Volume KOTI12/USER2 user data write
    >> (20204(zio.c[2301])) to block 122610663(file block 4810)(ZID 146302323)
    >> failed.
    >>
    >> 18.06.2009 15.30.15 : COMN-3.27-1092
    >> Severity = 4 Locus = 3 Class = 0
    >> NSS-3.00-5001: Pool KOTI12/SARKA is being deactivated.
    >> An I/O error (20204(zio.c[2279])) at block 29505990(file block
    >> 104772)(ZID 3) has compromised pool integrity.
    >>
    >>
    >> Any ideas what could be wrong?
    >>
    >>
    >> Best regards,
    >>
    >> Jonne Viljanen
    >> University of Helsinki
    >
    >

  • Problems with write to measuremen​t file

    My VI doesn't seem to write my signal properly when writing is enables.. however, if i change the "Write to measurement file" Express VI to a Write to Spreadsheet function, the signal is written correctly. From what I understand in previous discussions, there is a bug associated with enabling a write to measurement file, so is there a way to enable write to spreadsheet instead of using the express VI or is there a way I can bypass this bug?
    Thanks,
    TFlax
    Attachments:
    Analog test and collection.vi ‏700 KB

    This is my second program ever written, first in matlab, so I am very new to the field. So why I choose one way over another I have no reasoning, all I know is that it works. I am collecting electromyography analog signals, with a range of +/-5V.. the "bad" writing with write to meas file is that I am getting a flat signal (range between -.01 to +0.01, give or take).. where when written with write to spreadsheet, the signal has proper voltage range and normal frquency and amplitude characteristics seen in EMGs.
    I tried using a case structure for the write to spreadsheet, however it only writes the buffer size during continuous sampling. I need it to write the entire time the boolean (enable button) is true, also the enable button is operated as switch when pressed.
    The discussion about the write to measurement file: http://forums.ni.com/ni/board/message?board.id=170​&message.id=454380
    Thanks again

  • Problem with return table(adding extra record)

    Hi,gurus,
      I am facing a probelm with return table, i.e it is adding body record and workarea record also to the data target. so, it is adding the actual record to data target including the workarea record to with the key figure and year values as zeros and spaces. It's quite strange.
    Please help me out, thanks a lot.

    Hi,
       I have an ODS with the keys fields(ZPS_TXMID,ZPS_NODE&#65292;ZPS_NODE) and data fields(ZAU_C108,ZAU_C109,0PROJECT). I have to split one record from datasource to 6 records into my ODS. I'm updating ZAU_C109 with a routine with return table. Here is the code, please check it for me:
    <i> data: prj like /BIC/PZPS_TXMID-PROJECT.
    data: ls_icube_value like ICUBE_VALUES.
    clear ls_icube_value.
    select single PROJECT into prj from /BIC/PZPS_TXMID
            where /BIC/ZPS_TXMID = COMM_STRUCTURE-/BIC/ZPS_TXMID.
    ls_icube_value-/BIC/ZPS_TXMID = COMM_STRUCTURE-/BIC/ZPS_TXMID.
    ls_icube_value-/BIC/ZAU_C108 = COMM_STRUCTURE-/BIC/ZAU_C108.
    ls_icube_value-/BIC/ZPS_NODE = '1'.
    ls_icube_value-/BIC/ZPS_SNODE = '0'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_HJHSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '1'.
    ls_icube_value-/BIC/ZPS_SNODE = '1'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_HPSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '1'.
    ls_icube_value-/BIC/ZPS_SNODE = '2'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZAU_C101.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '2'.
    ls_icube_value-/BIC/ZPS_SNODE = '0'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_TJHSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '2'.
    ls_icube_value-/BIC/ZPS_SNODE = '1'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_TDSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '2'.
    ls_icube_value-/BIC/ZPS_SNODE = '2'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZAU_C102.
    APPEND ls_icube_value TO RESULT_TABLE.
    ABORT = 0.</i>
       After loading, I checked the contents of ODS, there are 6 records(0project, ZAU_C108 are blank, other fields are correct) + 1 more record(ZPS_TXMID,0project, ZAU_C108 are correct, other fields are blank), what I expect is only 6 records with all fields being filled properly, no blanks, no extra records. Is it strange? or am I doing sth. wrong?
      Your help is appreciated.

  • Problem with select range for a character type field. Kindly Help! Urgent!

    Hi Experts,
        I have to write a report to pull data from a table BUT000 for a selected range of  BPEXT field values in selection screen.
        In the table BUT000, the BPEXT field is type char. Now what is happening is that if the user gives a range in selection screen from 1000 to 1010 the query pulls all the records where teh forst character starts from 1.
    For example if the table has
        BPEXT
        1
        10
        100
        101
        1000
        1001
        1002
        1005
        1010
        20
        200
        2000
    Then my query pulls
       BPEXT
        101
        1000
        1001
        1002
        1005
        1010
       Instead it should pull only
       BPEXT
        1000
        1001
        1002
        1005
        1010
        My guess this is because the BPEXT field is of CHAR type instead of numeric.
        What shall i do to solve this problem? Kindly help please!   
    Thanks
    Gopal
    Message was edited by:
            gopalkrishna baliga

    Hi Chakradhar,
        How to find the conversion exit for BPEXT field?
        How to use the conversion exit in a select query in my ABAP report? Any sample code will be really helpfull.
       Please help!
    Thanks
    Gopal

  • Problem with paragraph style overrides and character formatting

    I've had this problem for a long time, and sometimes it resolves itself, sometimes it doesn't. Finally I'm begging for help.
    I am typesetting academic articles into a journal.  We use endnotes. The endnotes have both italic and regular formatting--italics for book and journal titles, and foreign phrases.
    Sometimes when I place the text, the formatting reverts to whatever it was in Word.  To try to fix that, I've begun stripping the Word formatting from the original document, making everything "Courier New" and just importing it like that.  I figured this would clear a lot of the problems I've had with fiddly formatting issues.
    I was mistaken. 
    Here is what happens:
    When I place the document it comes up in the original Courier New font, with italics and other formatting intact.  If I click "article style" which is the main article paragraph  style format, normally it changes.  but if I right click and select "apply article style" it is more likely to change the paragraph to the proper style, with italics and other formatting still intact.
    But when it gets to endnotes, I'm sort of screwed.
    My endnotes style is a bulletted style, so that I can have the endnote numbers consistent.  but this seems to screw all the style formatting.
    Here is what I do:
    With the cursor in endnote text, I click "bulleted endnote style".  The character format remains the same, with a + beside the style. The endnote number format is different, however.  If I click "clear overrides" it does in fact change to the proper formatting, but it strips any italics or other character in the text.  This is frustrating because many of these endnotes have lots of italicized journal and book titles, and it takes a long time to figure out which ones I need to reitalicize manually.
    I have tried to use the "customize style import>Style mapping" but it has not fixed anything.
    Please help me figure out how to make these transitions more smoothly.  I am open to suggestions both on how to make the changes once the document is placed in the Indesign file, and also making modifications to formats in the native Word file so that I don't have these problems. 
    Thanks
    Dan

    Sorry, that last message wasn't supposed to send (if that's not obvious!). I was writing it and got interrupted.  Damn iphone. 
    I know why there are two numbers.  This is not an issue. What I didn't finish writing was that, the note number before i bullet it is a different font/ format. Again, not a problem.  Here is something interesting, though.  If I delete that original number by placing the cursor in the middle of it (say a between the 4 and 2 of 42) then delete everything by Shift+arrow forward, press delete then delete the rest of the unnecessary characters, THEN apply the style formatting, it works just fine.  Is it something to do with the character codes of those original note numbers? 
    Word drops in so many hidden codes that it screws everything up!

  • Problem with Write To Measurement File Express VI not writing to file if file was deleted after the first call (7.1)

    I'm using the Express Write to LabVIEW Measurement File in LV7.1.
    I have it set to "Save to one file"  and have tried both "Overwrite file" and "Using next available file name" for the "If a file already exists" conditions.
    The path/filename is passed into the function.
    It works fine the first time around.  If the file is deleted before the function is called again, an error occurs since LV is unable to find the file.
    I have had to stop and re-run my program in order to write to use the function again.
    Since I am able to delete the file I assume it was closed but it seems like LV expects it to be there, even though the function was supposed to create/open/close the file...  Is there any way to reset this without stopping/restarting the program?
    Since my application creates several files (only one using the Express VI) I am checking for the filenames and requiring that they be deleted (or a new filename be used) before acquiring data.  Everything has worked great, except for the Express VI.
    Thank you,
    David

    Ok, I've edited the VI you posted to reproduce my error (this time with 8.0). 
    I added a "master stop" and "start log" button.  To demonstrate my problem:
    1.  Run the VI
    2.  Click "START LOGGING" - c:\test.txt is created
    3.  Click "STOP" - c:\test.txt is closed
    4.  Delete the file c:\test.txt with Windows shell or explorer
    5.  Click "START LGGING" - a new c:\test.txt file should be created but instead an error is raised in the Write LabVIEW Measurement File function.
    Any ideas?
    Thanks,
    Dave
    Attachments:
    Write LV Meas File 2.vi ‏96 KB

  • Output problem with write() function.

    Hi there
    This program produced the output only when i add "System.out.write('\n')",
    WHY?
    import java.io.*;
    class WriteBytes
    public static void main(String[] args) throws IOException
    byte[] b = {'T','e','s','t'};
    for(int i = 0; i < b.length; i++)
    System.out.write(b);
    System.out.write('\n'); // Why if i comment this line then, don't get the output.

    Your program is finishing before the buffer has a chance to flush. The newline character is forcing a flush to the print output. You could use System.out.println() to force the newline or System.out.flush() would work as well.

  • Problem with Vcard and non-English character

    VCard feature is what I would like to use, but I have quite a few contacts with Non-English name (Korean).
    I know Ipod can display in Korean, but when I create a v-card with Korean character and copy the vcard file over into /contacts folder, I can see the filename as the person's name (From windows explorer), but I can ONLY see first character of the file when I display contacts in iPod.
    Does anyone have tips/tricks on displaying all the filename in IPod contacts?
    Thanks.
      Windows XP Pro  

    Because i use the string nota into a jsp page and i print the string nota into a textarea and the text is with no newline, example:
    <textarea name="nota" rows="4" cols="60"><%= nota %></textarea>
    the text into textarea is:
    first linesecond linethird line
    but i want that the text displayed into textarea is equal the text into the CDATA section:
    first line
    second line
    third line

  • Problem with CDATA and new line character

    I parse a xml document with org.w3c.dom, the document contain a CDATA section in which there are more lines of text, each line is terminated with the new line character (\n).
    Example:
    <nota>
    <[CDATA[
    first line
    second line
    third line
    ]]>
    </nota>
    When a parse this node:
    Text txt_nota=(Text)elm_nota.getFirstChild();
    String nota=txt_nota.getData();
    the value returned is one string with no new line characters, example:
    "first linesecond linethird line"
    what's wrong?

    Because i use the string nota into a jsp page and i print the string nota into a textarea and the text is with no newline, example:
    <textarea name="nota" rows="4" cols="60"><%= nota %></textarea>
    the text into textarea is:
    first linesecond linethird line
    but i want that the text displayed into textarea is equal the text into the CDATA section:
    first line
    second line
    third line

  • Strange problem with out.flush

    Code:
    package com.test.servlets;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.IOException;
    import java.io.PrintWriter;
    public class MultiThreadTest extends HttpServlet {
      public void doGet(HttpServletRequest req,HttpServletResponse resp) throws ServletException,IOException {
        doPost(req,resp);
      public synchronized void  doPost(HttpServletRequest req,HttpServletResponse resp) throws ServletException,IOException {
        PrintWriter out = resp.getWriter();
        out.println("<p align=center><b>Multi Thread Test</b></p>");
        out.flush();
        try {
          Thread.currentThread().sleep(10000);
        catch(InterruptedException ie) {
          ie.printStackTrace(out);
        out.println("<a href=MultiThreadTest>Multi Thread Test</a><br/>");
    }When i shield the out.fulsh() with "//"
    The ie println all the text at one time after the sleep time,
    So i use out.flush() to fulsh the text which before the sleep().
    Then,ie show the "<p align=center><b>Multi Thread Test</b></p>" and then after 10 seconds ,show the ""Multi Thread Test
    But the strange thing is ,this time, the ie shows:
    <p align=center><b>Multi Thread Test</b></p>
    <a href=MultiThreadTest>Multi Thread Test</a><br/>
    It displays the HTML source code,why?

    G'day mate,
    To the best of my knowledge doGet() and doPost() are both already multi-thread enabled, unless your application explicitly implements the "SingleThreaded" interface, which your code doesn't appear to do. As it is the servlet containers 'job' to handle threading issues I wouldn't expect to be able to override the doPost() method without getting strange output.
    I reckon your best bet would be to create a javabean from within doPost(), pass it the request and response objects and let it handle the timing...... also set doPost() back to it's default, otherwise only one request will be serviced at a time. If that is what you want to happen then implement the affore mentioned interface.
    Hope this helps.
    Regards
    Davo

  • Problem with SQL Convert Function Junk Character

    Hi All,
    We have a database field that has a value of “2.020 OPERATOE’S CAB – GLASSES” on the front end of Oracle E-Business Suite. When we are spooling that column(in PLSQL) with the SQL covert function , one of the characters(’) in the string is not getting converted properly. It is displayed as a junk character in the spooled file.
    We used CONVERT(p_column,'WE8ISO8859P1','UTF8') for converting the string and utl_file api for spooling the output file. Please note that converted string is passed to utl_file.fopen directly.
    Following are the nls_parameters values.
    NLS_CHARACTERSET ~~ UTF8
    NLS_NCHAR_CHARACTERSET ~~ AL16UTF16
    Any inputs are welcome.
    Thanks
    gt1942

    Hello All,
    Sorry, If I am opening the blog in the wrong place as this is the first time.
    my out looks as follows.
    "02920  "
    but when i see in the application there is nuthing in the end.
    so I used regexp_replace(p_vendor_dtl,'[^[!-~]]*',''), But this is removing spaces also. I don't want to remove space. I want to remove this character only.
    Please help
    Thanks.

  • Problem with write a table to excel

    I want to open an existing Excel-file from Labview with ActiveX.
    I have used the Example "write table XL.vi"
    I changed the code that I can open the existing file but I am unable to
    select a different sheet in Excel.There is always the first sheet active
    and I cannot change this.
    Can anybody help me?
    robert
    Sent via Deja.com http://www.deja.com/
    Before you buy.

    wrote in message
    news:8q4e0a$hsa$[email protected]..
    > I want to open an existing Excel-file from Labview with ActiveX.
    > I have used the Example "write table XL.vi"
    > I changed the code that I can open the existing file but I am unable to
    > select a different sheet in Excel.There is always the first sheet active
    > and I cannot change this.
    > Can anybody help me?
    The workbook object has a "Sheets" property that returns a collection of all
    the sheets in the active workbook. Use the "Item" method on this collection
    to select the sheet you want- if necessary by cycling through all the
    elements (use the "Count" property to find how many objects there are) and
    using the "Name" property to get the name of the worksheet for comparison
    with the one
    you're looking for. Remember that everything is case sensitive.

Maybe you are looking for

  • Need to convert a long into a string, please

    hi there i need to convert a long into a string. can i just cast it like this: (String)longNumber = some function that returns a long;

  • Can I get battery percentage on my iPod touch 5?

    I want to know the percentage of my battery can I get that? If I can, how? iPod touch 5 32gb

  • How to start Debug server? No Redistributables?

    Hi everyone, Having issues with trying to run a Debug server for development testing. The server is not on the same dev box as Visual Studio, etc. It's a standalone W2008R2 box. I have the Debug version installed for testing but when trying to run it

  • Moving/sorting of images

    I am a photographer who likes to arrange what I have shot after I have put the images into Lightroom. I often want to drag one shot before another to make the presentation more powerful. With even most of the cheapest programs I can drag and drop ima

  • File sizes from MPEG to QuickTime to iDVD ?

    I have about 8 Gig of MPEG files downloaded from a video camera. I needed to install ClipStream and buy the MPEG-2 add on from the Apple Store to be able to open these files. I picked a long file, that was a 1.8Gig file ( 39 minutes long. I suspect t