Need to solve this Problem

i try to read the whole text that i'm getting from the inputStream,but the text contains "\n" it means that if i use readLine to read the text, i only get the first line, If i use while (readLine() != null) i can read the whole text that i want, but the program still loop, i cannot break the application..
How can i solve this?
thanks guys you're the best...

The output that i want to get is like this
/$****************************************************************]** YOU ARE NOW WORKING ON SYSTEM -A- LIVE **]****************************************************************]
A-IN AM/HM FQX * GA RES FQX *
^|
the problem is, if i use
int c;
while ((c = in.read()) != -1)
i can see i got something,but not finish to the end of text...
if i use :
while (bfr.readLine() != null)
i get the whole text but my program wont end, it means the loop is still around...am i right? correct me if i'm wrong....
The text that i want to get is contains (Carriage return)...
Help....thanks

Similar Messages

  • I desperately need to solve this problem even geeks on call could not

    I desperately need to solve this problem
    Posted: May 17, 2006 5:29 PM Reply Email
    How to Connecti computers over the internet using IP addresses
    Posted: Mar 8, 2006 7:18 PM
    Reply Email
    No one has been able to help me solve this problem even geeks on call
    So please out there give me some good advice. This feels like a level 5
    I have three computers at three different locations. The first one is a emac at my office running classic 9.2. The second location is a power book g4 running 10.4.5. at my home. The third is a power book g3 running OS 9.2.2at a third location.
    What I am trying to do is to access my computer at my office from the other two locations. My office has two computers that are on a network and talk to each other. They are both EMAC"S. They are connected by a ethernet network which is connected to a DSL modem which keeps me on the Internet all the time.
    At the other two locations I have direcway satellite which is broadband which also stays on all the time on the internet.
    I need to be able to access a data base on my main computer at my office and run the program which is an Omnis 7 program. I have multi user capabilities for this program, so that all the computers can access the data files at the same time and reqad and write.
    So this is my dileema.
    Any help would be greatly appreciated
    powerbook g3,emac Mac OS 9.2.x also 9.2 os, and 9.22 o.s.and 10.4
    eww
    Posts: 2,224
    Registered: Jul 28, 2000
    New! Re: I desperately need to solve this problem
    Posted: May 17, 2006 6:08 PM in response to: drpresseye

    well, at any or all of the locations you may need to open up the ports through your routers to allow ARD access.
    Also, I'm wondering if you are experiencing problems between using old and new versions of remote desktop.
    In any case, when you say you have multi-user capabilities, to me that implies that from location 2 and 3 you want to open the database file directly, not open it within an RDC session on a machine at location 1. That will be a different issue. Now you are talking about file shares over TCP/IP.

  • I need make icloud account but tell me the operation couldn't be completed please iam need to solve this problem necessary, Thank you

    i need make icloud account but tell me the operation couldn't be completed please iam need to solve this problem necessary, Thank you

    Why don't you use the option "Get a Free Apple ID" to create a new iCloud account with a free @icloud.com email address for all the iCloud service like Mail, Contacts, Calendars, Reminders, Notes Storage & Backup etc.?
    This would be the easiest way.

  • I desperately need to solve this problem

    How to Connecti computers over the internet using IP addresses
    Posted: Mar 8, 2006 7:18 PM
    Reply Email
    I Can't believe that no one can help me with this problem. There were no responses in march so I am trying again.
    I have three computers at three different locations. The first one is a emac at my office running classic 9.2. The second location is a power book g4 running 10.4.5. at my home. The third is a power book g3 running OS 9.2.2at a third location.
    What I am trying to do is to access my computer at my office from the other two locations. My office has two computers that are on a network and talk to each other. They are both EMAC"S. They are connected by a ethernet network which is connected to a DSL modem which is on a static IP which keeps me on the Internet all the time.
    At the other two locations I have direcway satellite which is broadband which also stays on all the time on the internet.
    I need to be able to access a data base on my main computer at my office and run the program which is an Omnis 7 program. I have multi user capabilities for this program, so that all the computers can access the data files at the same time and reqad and write.
    So this is my dilema.
    I really need help

    In order to establish a secure connection into your
    office network you should really consider getting a
    VPN router.
    Once your router is configured you can then use a
    PPTP client to connect to your Office VPN server.
    Do I need a special VPN server or can one of my emacs double as a VPN server ?
    OS9 does not have built in vpn client so you need to
    use something like tunel builder.
    For your OSX mac you can use internet connect to
    establish a VPN connection.
    One your connection is established you can connect to
    the computers in your office as if your a local
    machine.

  • I buy I phone from USA and I use this I phone in Iraq I get this message  Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier so I need to solve this problem

    Dear ,
    I buied I phone from USA and I sent to  Iraq to use it there but when used it I get this message :
    The SIM card that you currently have installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier
    so I need support to resolve this problem and  procedure  and how I can  iPhone be unlocked.
    BR,
    Ammar Jumaa

    ammarjr wrote:
    ... how I can  iPhone be unlocked.
    Sorry...  but...  ONLY the US Carrier it is Locked to can unlock it.
    You need to Contact them.
    Note:  No one here will know who that Carrier is.

  • I need help solving this problem!!

    Hi, i'm new to java and have written only a few programs, i recently wrote one and had the following error but dont know why...........
    Exception in thread "main" java.lang.NoClassDefFoundError: quadraticsolverApp
    I have included my code below.....
    import java.applet.Applet;
    public class quadraticsolver extends Applet
    public double a, b, c ;
    public void init()
    a=0;
    b=0;
    c=0;
    public String getRoot1()
    if (getDescriminent() < 0.0 || this.a == 0.0)
    return "" + ((-b + Math.sqrt(-getDescriminent()))/(2 * a)) + " i";
    else
    return "" + ((-b + Math.sqrt(getDescriminent()))/(2 * a));
    public String getRoot2()
    if (getDescriminent() < 0.0 || a == 0.0)
    return "" + ((-b - Math.sqrt(-getDescriminent()))/(2 * a)) + " i";
    else
    return "" + ((-b - Math.sqrt(getDescriminent()))/(2 * a));
    public double getDescriminent()
    return (b*b - 4 * a * c);
    public void setA(double bValue)
    a = bValue;
    public void setB(double bValue)
    b = bValue;
    public void setC(double bValue)
    c = bValue;
    Thanks for the help
    Noel
    email: [email protected]

    Besides that, the code is broken. For instance
    return "" + ((-b - Math.sqrt(-getDescriminent()))/(2 * a)) + " i";should be
    return "" + (-b/(2*a)) + " " + (-Math.sqrt(-getDescriminent())/(2 * a)) + " i";
    to get correct answers... 1/2 * (-1-sqrt(3)) i (or approximately -1.36602540 i) is not a solution of x^2 + x + 1 = 0. Also, if a is small, it's better to use the formula x = 2*c / (-b +/- sqrt(b^2 - 4ac))

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • I have an IMac 10.5.2 from about 5 years ago and recently my flash player stopped responding.  I tried to update my flash player but it tells me I need an updated system to install the player.  Can anyone help me figure out how to solve this problem?

    I have an imac osx 10.5.2 from about five years ago and recently my flash player stopped operating/responding.  Does anyone know if I have to install a new flash player?  I have attempted it several times and it won't let me.  I would appreciate any suggestions on how to solve this problem.  Do I need a new operating system?

    Why have you not updated to 10.5.8?
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3.183.23 or later, is for Intel Macs only running Tiger or Leopard, as Adobe no longer support the PPC platform. Version 11.4.402.265 or later is for Snow Leopard onwards.
    * Unhelpfully, if you want the last version for PPC (G4 or G5) Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:

  • I guess the problem come from me or I really need those contacts before he calls me for it. I'll try some method that I got from some responders on your support website. Do you have or can you recommand any software that can solve this problem?

    I guess the problem come from me but I really need those contacts before he calls me for it. I'll try some method that I got from some responders on your support website. Do you have or can you recommand any software that can solve this problem?
    One more thing. I just update my iphone that my boss gave to me but it seems to be like it giving me some trouble. My iphone was updated not too long and was successful. I try to lock into it and it telling me emergency call. I plug it to my itune and it telling me that the sim card is not valid or supported. So I inserted my sim card that I usually use to call and it still saying the same. Please help me get into it.

    And as far as paying for phone support, here are a few tips:
    If you call your carrier first and then they route you to Apple, you usually don't have to pay for phone support.
    If you are talking to Apple and they ask you to pay a support fee, ask if you can get an exception this time.  That usually works once, but they keep track of the times you've been granted such an exception.
    If you still end up paying the support fee, that fee only applies if it's not a hardware related issue.  In other words, if it can be fixed by just talking over the phone and following Apple's instructions, then the fee applies.  But if your device is deemed to have a hardware failure that caused the issue, then the fee should not apply, and you can ask for it to be waived after the fact.
    This forum is free, and almost all of the technical support articles the Apple tech advisors use are available on this website.  Literally 99% of what they can do over the phone is just walking you through the publicly available support articles.  In other words, you're paying the fee to have them do your research for you.  It's like hiring a research consultant to go look stuff up in the public library so you don't have to.  You're capable of doing it; you'd just rather pay someone to do it for you.
    It's like Starbucks.  You know how to make coffee.  Everyone knows how to make coffee.  And Starbucks coffee isn't any better than what you could make at home for far less.  But you want the convenience.  So you're really paying a convenience fee.  Milk is more expensive at 7-Eleven than it is at the grocery store... because it's a convenience store.

  • I bought CS6 creative suite. As of now i need to work each application in separate separate system. Can any one please help me how to solve this problem.

    I bought CS6 creative suite. As of now i need to work each application in separate separate system. Can any one please help me how to solve this problem.
    I saw the below quote on Adobe forum
    "You may install software on up to two computers. These two computers can be Windows, Mac OS, or one each."
    If i install each application in single single system the system count is more than two. In this case, are we have any license issue? Please advice how the problem will solve?
    If possible please send the advise to my mail id: <Removed by Moderator>
    Thanks
    Uvaraj S

    I already answered that.  If you purchased a Suite then you can only install and activate it on two machines.  Even if you only insdtall one of the applications of that suite, it counts as one activation of the suite.  You cannot take the six or seven different applications that might be in a suite and install and activate them in six or seven different machines... only two machines.
    If your scenario will allow for it, one thing you can do is install the programs on all the different machines and only activate two of the machines at any given time.  If you need to activate a program on a third machine then you need to deactivate on one of the currently activate machines first so that you have an open activation to use again.  I do not remember if there is a limit to the total number of activations you can process for the life of the software.

  • My MacKeeper says iPhoto is out of date.  When I try to update the App Store says I need IOS 10.9 or later.  I have 10.7.5 and when I check for updates my Mac says the software is up to date.  How do I solve this problem??

    My MacKeeper says iPhoto is out of date.  When I try to update it, the App Store says I need IOS 10.9 or later.  I have 10.7.5 and when I check for updates my Mac says the OS software is up to date.  How do I solve this problem??

    1. First step to solving the Problem: Trash MacKeeper. It's a pile of trash that does far more harm to your computer than good.
    https://discussions.apple.com/docs/DOC-3691
    2. What version of iPhoto do you have? (iPhoto Menu -> About iPhoto)

  • I cant open my iphone 3g ,,,, needs restore and itunes cant make restore has an error... How can I solve this problem?

    I cant open my iphone 3g .... needs restore and itunes cant make restore has an error on phone .... how can I solve this problem?

    Are there any error numbers given by iTunes? If yes, solutions for those numbers can be fund in this article: http://support.apple.com/kb/TS1275 or this one http://support.apple.com/kb/TS3694

  • We have 'CS6' version of Adobe. We are facing a problem with 'Acrobat Pro'. Every month that is stop working and everytime need to install. Kindly help us regarding solving this problem...

    We have 'CS6' version of Adobe. We are facing a problem with 'Acrobat Pro'. Every month that is stop working and everytime need to install. Kindly help us regarding solving this problem...

    Your Acrobat is running in Trial Mode.  Try this KB: Creative Cloud applications unexpectedly revert to trial mode | CS6, CCM
    If it doesn't work you need to contact Adobe Support for assistance.

  • HT201304 I don't what is wrong with my card I can't buy anything on apple store even free ones I can't download, they said my previous purchase have a problem but I don't how wil I do to solve this problem, I need a help pls

    I don't what is wrong with my card I can't buy anything on apple store even free ones I can't download, they said my previous purchase have a problem but I don't how wil I do to solve this problem, I need a help pls

    What is the exact error message you're receiving?

  • Hello, i need help i'm doing experiment on ilab i have managed to put my experiment on the platform but when i try to launch it fails with an error 404 that the page not found. any one with idea of what i should do to solve this problem. thank you

    hello, i need help i'm doing experiment on ilab i have managed to put my experiment on the platform but when i try to launch it fails with an error 404 that the page not found. any one with idea of what i should do to solve this problem. thank you

    hey Sally,
    Can you elaborate on the ilab and what you are trying to do? I have found this page to explain error 404, but I am not sure if it directly applies to  you
    http://digital.ni.com/public.nsf/allkb/D0998D3734926FA08625782300016E40?OpenDocument
    Regards,
    A. Zaatari
    National Instruments
    Applications Engineer

Maybe you are looking for

  • Flat file upload: constans in TRs?

    Hi, I am having a flat file, which has only limited fields, where as the requirement is to upload all the fields which are relevant! However,  for the remaing fields which are relevant are all constants! In a case such as the above said, can we have

  • How to execute visibroker corba functions?

    Hello i have application that the api is exposed throw visibroker coraba that mean to execute function throw the web i need to talk cobra is there any layer in jsb that provide me to possibility to talk with visibroker ? thanks

  • Microsoft word not working........

    Hey guys, i just tried to open microsoft word, it was working about 4 days ago and now it says, The application "Word" could not be launched because of a shared library error: "4<Microsoft Word><CarbonLib><CFMPriv_OpenScripting>". i dont know what ha

  • Find users in the database

    I would like to know the users users in the database A that were not in the database B Both the database in the same host. created Db link between two database

  • Text reversed (mirrored) in menus, lists & popups

    Hi there I've just installed the latest trial version of FlashBuilder with the Flex SDK 4.1. After compiling and running my project all my popups (TitleWindow + Alerts) are reversed and the text inside them is reversed. Also all the text in my menus