Help Needed.Battery problem

Hello,
I desperately need help for my iphone.Sometimes iphone shows that battery is empty.The battery's life is fine but sometimes when i press the power or home button so that iphone comes out of stand by it shows no battery, if i try again after a while battery is fine.Please help because i lose some calls or sms's because of this.

Reboot the phone now and then (just good practice)
To Reboot. Press and hold both the Lock and Home buttons. Do not let go when it says Slide to Turn Off. Keep holding until you see the Apple Logo, then you can let go. This is a full reboot of the OS. No data will be lost. Takes about 10seconds of button holding and maybe 30secs to min to reboot.

Similar Messages

  • Need Help for Battery Problem!!!

    Hi! Everybody.
    After leaving my iBook G4 for a few week, The battery is getting worse. The problem is when i fully charged the battery and it shown 100% on the battery icon, there was only one light and flashing on the back of the battery and the computer can run normally only 15 minutes. Are there any solution or suggestions before i buy a new battery?

    Probably not. I'm having the same issue.
    Reset PMU
    Recalibrate battery
    Run coconut battery or istat widget to check health.
    Save some coin.
    KJ

  • PLEASE HELP WITH BATTERY PROBLEM!!

    I recently swicthed from the 8830 which was a wonderfull phone. MY curve from sprint, 8330 is dead every day by 5 pm. I already exchanged the phone and had the battery replaced (third battery) I used my 8830 with the same applications and the most it would be by like 50-70 percent.  I dont know what to do. The curve is SUPPOSED TO  get better battery life! but actually is not. Its become a non realiable phone for me. Its still under my 30 days. Even though i already swaped it once. I do not want to get rid if this phone. I love the blackberry i just need the battery to last me either the same or better than the 8830 as blackberry promised....
    I have read forums in closing the applications but even when i do its still the same. I occasionally do get the hour glass problem and it does lag quite a bit.  Does any one know of a battery issue?? Has to be???
    I let it die last night and recharged it completely - as some of you recommended. I will try it today but my hopes arent to high ....
    Please help.
    Thank you 

    Hi,
    Excellent Post by JSANDERS
    http://www.blackberrynews.com/2008/05/20/battery-use-tips-for-your-maximum-battery-life/
    Thanks
    If you need more info please ask!  If not please resolve the thread using the options by the Kudos’ star, Just place the check in the Post that answered your question, Thanks  
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Help neede urgently(Problem in adding exponential numbers)

    Hi,
    Actually i want to add the contents of two files which contains exponential numbers.
    i'm not able to add these numbers. Can any one help me?
    import java.io.*;
    import java.nio.*;
    class  userFile
         public static void main(String[] args) throws IOException
              try
                   BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
              String s1,s2,s3;
              FileReader fr1,fr2;
              System.out.println("Enter first file :");
              s1=br.readLine();
              System.out.println("Enter second file :");
              s2=br.readLine();
              System.out.println("Enter new file :");
              s3=br.readLine();
              fr1= new FileReader(s1);
              fr2= new FileReader(s2);
              BufferedReader fin1=new BufferedReader(fr1);
              BufferedReader fin2=new BufferedReader(fr2);
              String str1,str2,str3;
              double i1,i2,i3;
              OutputStream fout=new FileOutputStream(s3);
              while((str1=fin1.readLine()) != null)
                   while((str2=fin2.readLine()) != null)
                   i1=Float.parseFloat(str1);
                   System.out.println(i1);
                   i2=Float.parseFloat(str2);
                   System.out.println(i2);
                   i3=i1+i2;
                   System.out.println("i3=" +i3);
                   str3 = Float.toString(i3);
                   byte buf[]=str3.getBytes();
                   fout.write(buf);
                   fout.write('\n');
              catch(NumberFormatException e)
                   System.out.println(e);
    }I need help urgently.
    Thanks in advance.

    By "exponential number, do you mean one in scientific notation (eg. -1.55743e21) or what?
    What do your files look like?
    What problem are you encountering? Is an exception being thrown? If so, give us the exact message (copy/paste). Is the results simply not what was expected? If so, give us the input, the expected results and the actual results for us to compare and consider.
    Chuck

  • Help Needed: Serialization Problem

    I've got a problem with serialization, which is better illustrated with an example (slightly modified version of example in Tech Tips, February 29, 2000, Serialization in the Real World. The problem is that comparing serialized static final fields doesn't return correct result. Any help on how to fix this problem would be greatly appreciated. Thanks in advance. Here is the code:
    ====================
    import java.io.*;
    class Gender implements Serializable {
    String val;
    private Gender(String v) {
    val = v;
    public static final Gender male = new Gender("male");
    public static final Gender female = new Gender("female");
    public String toString() {
    return val;
    public class Person implements Serializable {
    public String firstName;
    public String lastName;
    private String password;
    transient Thread worker;
    public Gender gender;
    public Person(String firstName,
    String lastName,
    String password,
    Gender gender) {
    this.firstName = firstName;
    this.lastName = lastName;
    this.password = password;
    this.gender = gender;
    public boolean isMale() {
    return gender == Gender.male;
    public boolean isFemale() {
    return gender == Gender.female;
    public String toString() {
    return new String(firstName + " " + lastName);
    public static void main(String [] args) {
    Person p = new Person("Fred", "Wesley", "cantguessthis", Gender.male);
    //-NOTE: there ia no problem with this check
    if (p.isMale()) {
    System.out.println("a male: " + p);
    } else if (p.isFemale()) {
    System.out.println("a female: " + p);
    } else System.out.println("strange");
    class WritePerson {
    public static void main(String [] args) {
    Person p = new Person("Fred", "Wesley", "cantguessthis", Gender.male);
    ObjectOutputStream oos = null;
    try {
    oos = new ObjectOutputStream(
    new FileOutputStream(
    "Person.ser"));
    oos.writeObject(p);
    catch (Exception e) {
    e.printStackTrace();
    finally {
    if (oos != null) {
    try {oos.flush();}
    catch (IOException ioe) {}
    try {oos.close();}
    catch (IOException ioe) {}
    class ReadPerson {
    public static void main(String [] args) {
    ObjectInputStream ois = null;
    try {
    ois = new ObjectInputStream(
    new FileInputStream(
    "Person.ser"));
    Person p = (Person)ois.readObject();
    //-NOTE: this is the problem: the check returns false
    if (p.isMale()) {
    System.out.println("a male: " + p);
    } else if (p.isFemale()) {
    System.out.println("a female " + p);
    } else System.out.println("strange");
    catch (Exception e) {
    e.printStackTrace();
    finally {
    if (ois != null) {
    try {ois.close();}
    catch (IOException ioe) {}
    }

    The Gender class implements a type-safe enumeration, but its implementation needs to be improved to ensure that re-creating a Gender object via deserialization doesn't create new objects but uses the existing objects. See this article for details on how that's done:
    http://developer.java.sun.com/developer/Books/shiftintojava/page1.html

  • Help needed - DEP problem

    Hi.
    I need help with the installation of Flash Player ActiveX.
    I have Win 7 Home Premium Edition, 64 Bit.
    Everything worked perfectly on my laptop, and I could saw flash objects both on the 32bit explorer and the 64bit explorer version.
    Until recently I've clicked on the 'Restore Default' button in the Explorer menu.
    Since then - when I try to broswe with the 32bit Explorer edition - I keep getting messages like the following:
    "Internet Explorer has stopped working"
    And then - "
    Windows Data Execution Prevention detected an add-on trying to use system memory incorrectly. This can be caused by a malfunction or a malicious add-on.
    Other things you can do:
    Go online to learn about the Data Execution Prevention (DEP) security feature"
    When I disable the "Shockwave Flash Object" from the adds-on menu - everything's good, just I can't see the flash objects, of course.
    I'm tring to install the Flash Player ver. 10.2.159.1 through the DLM or through the manual installation - each time leading to the same result - "Internet Explorer has stopped working".
    With the 64bit Explorer edition - I get no error message - but no flash displayed as well.
    Any help will be much appriciate.

    Ok, I tried to lower it to the minimum - problem still exist.
    And of course I've uninstalled it before. I know a little about computers, just not enough, apparently..
    Keep on trying!
    (Oh, BTW - I've successfully installed flash on the 64Bit version of explorer. ver. 13 something... is there is something like this?
    Anyway, now I need my 32bit version to work...)
    TY.

  • Help, need battery!

    pls help, i have an ibook g4 and would like to order a battery for it as a second computer.  have photos on it.  what size battery do i need, 6 or 8 cell or does it attr?  also how can i find out if this is late or mid 2004/2005. 
    thank you so much,  movie lady

    One of the details of consideration that make a difference
    would be the size of the Display; as the computer with a
    14" LCD generally also has a faster processor than the
    same model year build in a 12" display. Also the 14"
    model is more likely to have a SuperDrive, not a Combo.
    •14" ibook model ^
    •12" ibook model ^
    Notice there are white iBook G3 computers, also white G4.
    The replacements listed at site linked below will work.
    So when looking into a site such as this, be sure to check
    the correct one (and display size) to check for a match:
    http://eshop.macsales.com/shop/Apple/Laptop/Batteries
    The number of cells would only matter if you were into
    taking them apart & rebuilding them. Not buying retail.
    Good luck & happy computing!

  • HELP! BATTERY PROBLEMS, I THINK...

    Hey,
    Got problems with my MacBook Pro battery. It started when I noticed it was taking a REALLY super-long time to charge...I would leave it plugged in over night and in the morning, it would still be at 63%. Then, it would say it was fully charged, so I'd unplug it and work on it, and it would just go dead, even though I had more than half a battery left (at least according to the status icon). This has happened several times, and it doesn't start back up unless I plug it in.
    To make matters worse, just this morning, I spilled hot coffee all over the laptop and now it's really giving me problems...it's on and working but it will just go out even though it's plugged in, and it takes a really long time to start up again.
    Do I need to buy a new battery or calibrate or ??????? Can I get it back to normal?

    To make matters worse, just this morning, I spilled hot coffee all over the laptop and now it's really giving me problems...it's on and working but it will just go out even though it's plugged in, and it takes a really long time to start up again.
    Oh, that's really bad. You are probably never going to get that machine to be back to normal again.
    Those grains can get in between the circuits and any left over residue that dries on it can short the circuits on it.
    Time to move the hard drive out of your machine and put it in a replacement. Hopefully your homeowners insurance will cover that. Never let food nor drink near your computer.

  • Please help C905 battery problem

    Hello
    I passed my C905 down to my daughter.  Then last week the battery died (we thought) so I replaced it. It won't charge just says 'cannot charge battery use sony ericsson battery' which I have! Have two chargers and tried different sockets to no avail.  Please help!!!

    http://www.sonyericsson.com/cws/support/mobilephones/downloads/c905?cc=gb&lc=en This could be a software issue, so if one of the batteries is still at least partially charged, you can try running the SE update service and/or a phone repair via PC companion, both of which require the phone to be switched off.You might also want to clean the battery contacts inside the phone.Hope this resolves the problem.

  • Help needed, possible problem with HDD

    In the last few weeks, my iMac has become quite slow and tends to freeze fairly often. The other day I turned it on and was met with a kernel panic screen and could not access my desktop or any of my files. To find the source of the problem I ran an Apple Hardware Test which gave me the following error:
    4HDD/11/40000004:SATA (0,0)
    After searching on the internet, I decided to boot from my OSX install disc and run Disk Utility. After verifying the disc, and repairing the disc, the scan revealed that there was no problem with the HDD. However, I was still being met with the kernel panic screen whenever I tried to turn on the computer.
    After booting from the install disc again, I did an Archive and Install, which finally let me get to my desktop, however the computer was once again running slowly and after another Apple Hardware Test it resulted in the same error as above.
    After more searching on the internet, I decided to remove the 3rd party RAM from my iMac and replace it with the original RAM. No success again.
    More searching brought Disk Warrior to my attention. After purchasing the program, I ran the included scans and once again was given the result that there was nothing wrong with the HDD.
    After this I decided to run Tech Tools Deluxe which came up with a Directory fail, even though the Disk Utility and Disk Warrior scans found no such problem.
    So what procedure can I take now, I am hesitant to perform a System Restore as I do not want to lose my files, but this may be my only option.
    Please help.

    Okay, I ended up installing OSX to my external HD and booted from that. Ran Disk Warrior from the external and used it to rebuild the internal HD. After the rebuild DW gave me the message that it could not replace the new directory with the old directory as there was a disk malfunction. I managed to copy all of my important data to the external.
    I'm guessing that the internal needs to be replaced? I'd rather start fresh with a new one than risk this happening again anyways.
    In any case thank you very much for your help, it was much appreciated .

  • [HELP NEEDED] FBN1 Problem

    Hello SAP Masters,
    We have a problem with FBN1.
    The current document number that was recorded there was: XXXXXX59
    However, when we checked, the last posted document was: XXXXXX60.
    Therefore when we try to post a new document, the system tries to save XXXXXX60 since the last document number that was recorded in FBN1 is XXXXXX59. But since document XXXXXX60 already exists we can not save any more doc.
    Do you have any idea why this happened or What may be the solution for this?
    Thanks so much for your help!
    Regards

    Hello
    Try this one
    Change the number range from 61 to xxxxxx for the number range number and ty posting a document.
    Hope this should solve ur problem
    Thanks
    sanjeev

  • [help needed] Javadoc problem with many files

    Hi,
    I have an Ant script generating my javadoc every night. I have about 5700 java files making about 42MB of data.
    It worked fine for two years until two weeks ago, where the script stopped with the following message :
    <<
    [... big snip...]
    [javadoc] C:\Temp\Java\blablabla.java:58: cannot resolve symbol
    [...snip...]
    [javadoc] public HtmlComponent getCell(
    [javadoc] ^
    [javadoc] 100 errors
    [javadoc] 1 warning
    BUILD SUCCESSFUL
    Total time: 1 minute 40 seconds
    >>
    If I execute the javadoc generation on a smaller set of java source files, I still have a lot (100 displayed) of error messages like the one above (which generaly don't stop javadoc), but the generation continues :
    <<
    [...big snip...]
    [javadoc] C:\Temp\Java\xxx.java:12: cannot resolve symbol
    [...snip...]
    [javadoc] public SelectionNoop(Fig fig) {
    [javadoc] ^
    [javadoc] Standard Doclet version 1.4.2_08
    [javadoc] Generating C:\temp\JavadocNewSI\constant-values.html...
    [javadoc] Building tree for all the packages and classes...
    [javadoc] Generating C:\temp\JavadocNewSI\com\zz\common\job\common\class-use\ManagerDelegate.html...
    [...big snip...]
    [javadoc] Generating C:\temp\JavadocNewSI\stylesheet.css...
    [javadoc] 6251 warnings
    BUILD SUCCESSFUL
    Total time: 23 minutes 33 seconds
    >>
    I don't understand what's going on. It is not a memory problem since it issues an intelligible message.
    I also managed to generate javadoc for several subsets, so it can't be a problem with one file or folder crashing javadoc.
    Any help welcome,
    Tug

    Well, it seems that the cause was indeed an empty java file...
    The generation fails if the empty java file is the set AND a refering file is in the set. If only one of these conditions are missing, then javadoc goes on...
    What I don't understand is that the empty file used to be here since may 2005 and the referring class is unchanged since 2004... it never bugged javadoc before.
    Creepy...
    Tug

  • Ichat Help Needed: Connection Problem

    I purchased a new imac about 2 months ago. I have been having problems with my ichat ever since the beginning. When ever I open my ichat to login it says: Lost connection with AIM, the connection to the host was unexpectedly lost, Almost immediately upon login. I have never infact been able to access ichat because I can never login. My internet connection is fine, I have been using the internet with no problems what so ever. I have been using AIM express in the time being and it has worked fine. I have tried updating my software and creating a new AIM screen name but it hasent helped. I would greatly appreciate if someone could tell me how to solve this problem.
    Thank You.
    iMac Mac OS X (10.4.10)

    hi Olivier,
    In that case do two things
    1) Download and Instll the Combo version of the Update
    See this list http://www.apple.com/downloads/macosx/apple/macosx_updates/
    2) reboot the Modem and or router.
    1:35 PM Wednesday; July 11, 2007

  • Urgent Help Needed: Installation problem on Win2K

    My j2sdk1.4.1_01 folder got deleted, I tried to reinstall J2SDK1.4.1_01 but everytime I try I get a dialog box that pops-up saying:
    You already have the Java 2 SDK , SE v1.4.1_01installed on this machine. Would you like to uninstall it?
    Clicking OK runs a very brief uninstall, but apparently doesn't actually uninstall, Win Add/Remove Programs does the same thing, it runs, says it uninstalled it, but doesn't. Anyone have any ideas?

    Same problem here. The installer crashed at the very end of the installer procedure, so I attempted to uninstall. I failed, so I manually deleted files and attempted to reinstall.
    The system claims that the software is still installed and when I instruct it to uninstall, it immediately terminates.
    I've even deleted the HKLM\SOFTWARE\JavaSoft\Java Development Kit\1.4.1_01 key. The installer puts it back when you tell it to uninstall the software!!
    Anyway, the work around is to go into RegEdit and delete the two keys that contain mention of version 1.4.1_01. There are two, one in
    HKLM\SOFTWARE\Microsoft\Code Store Database\Distribution Units
    and the other in
    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
    Both has long hexadecimal string names (CSIDs?)
    I was then able to reinstall...

  • Help needed. Problem with servlet.

    Hello ppl. Ok. I've never really needed to implement servlets in my projects before but I experimented by writing a simple helloworld servlet. It compiled successfully and I tested it in the examples servlet dir and it worked. To test it in the ROOT dir, I placed the servlet in the ROOT/WEB-INF/classes folder and edited the web.xml file with:
    <servlet>
              <servlet-name>HelloWorldExample</servlet-name>
              <servlet-class>HelloWorldExample</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>HelloWorldExample</servlet-name>
              <url-pattern>servlet/*</url-pattern>
         </servlet-mapping>
    When I try and execute the servlet by using this URL: localhost:8080/servlet/helloworld I get an internal server error and the server crashes. I removed the entry from the web.xml file and Tomcat started up again. What went wrong? Can someone enlighten me in how to get my test servlet working becuase i may use them in the future. Thanks.

    Nope, Still didnt work. As soon as I put in:
    <servlet>
         <servlet-name>HelloWorldExample</servlet-name>
         <servlet-class>HelloWorldExample</servlet-class>
         </servlet>
         <servlet-mapping>
         <servlet-name>HelloWorldExample</servlet-name>
         <url-pattern>servlet/HelloWorldExample</url-pattern>
         </servlet-mapping>
    Tomcat went offline!
    I have another entry which is:
    <servlet>
              <servlet-name>org.apache.jsp.index_jsp</servlet-name>
              <servlet-class>org.apache.jsp.index_jsp</servlet-clas
    >
         </servlet>
         <servlet-mapping>
              <servlet-name>org.apache.jsp.index_jsp</servlet-name>
              <url-pattern>/index.jsp</url-pattern>
         </servlet-mapping>
    Do you think they may be conflicting? Thanks.Tomcat going offline is quite weird. However,
    <url-pattern>/index.jsp</url-pattern>
    this is perfectly valid. Lemme ask you this: did u come up with this stuff on your own or was it generated for you by the container? It looks like it was generated upon compilation of the jsp. If that is the case it should cause any conflicts. However now if you want to invoke the servlet/jsp you must use a URL like:
    http://localhost:<PORT_NO>/index.jsp
    Cheers

Maybe you are looking for

  • Sales order item gets "Fully delivered" status even if partial qty

    Hello, We have a depot sales configuration in SAP. I found that some sales order lines are getting completed (delivery status "Fully delivered") even if partial quantity is pending for the order line. I checked the status in VBUP table where LFSTA ge

  • Itunes 10 installs but says unknown publisher invalid digital signature

    i need help as i would like to upgrade to itunes 10. I have tried absolutely everything such as restarting computer and resetting tools on internet. it installs perfectly but once it has finished it comes up with an error message saying unknown publi

  • Determining Speed Data from GPS | Flash Training with Paul Trani | Adobe TV

    Using ActionScript you can get GPS data from the device. Often the latitude and longitude is used, but did you know you can also get the direction of movement, accuracy, altitude as well as the speed? In this video learn how to get the speed property

  • Has anyone tried running Logic Pro X with a RAM disk?

    I Have been reading about the possible benefits of using a Ramdisk (created in terminal, or as a startup AppleScript). Would I see any benefits running LPX straight from RAM? I realize that I would have to save periodically to alternate locations on

  • Profit Center Table

    Hi Sapiens I am using an ECC6, NEW GL activated, Can I use Tables like GLPCT, GLPCO, GLPCA, GLPCP for Profit center report painter reports. or should I use tables like FAGLEXT. What I mean, are the OLD tables like GLP*  still getting update in ECC6?