HELP I'm a student studying java....this weird thing is happening

hello i've been working on this for two hours know but still haven't found a way around this:
the task is too(from a workbook):
Fitness Age
The user enters their scores out of 60 for two exercises (the lower the score the fitter they are). Their “fitness” age is calculated these two numbers as follows: First work out the average score. (By adding them together and dividing by two). Next multiply the average by 8. Divide the answer by 6. Finally add 15. The answer (in whole years) is the person’s PC fit age. Print out the person’s average score, fitness age and its difference from their real age. All answers should be in whole numbers (rounded down).
An example run of the program (numbers in bold are typed in by the user. Pop-up boxes may be used for
input and output):
Score of test 1? 11
Score of test 2? 9
Your average score is 10
What is your actual age? 20
Your PC Fit age is 28 years old.
You are -8 years away from your PC fit age.
Another example run:
Score of test 1? 23
Score of test 2? 42
Your average score is 32
What is your actual age? 60
Your PC Fit age is 57 years old.
You are 3 years away from your PC Fit age.
the user types the input through command promt
here is my code.....i tried debugging the code my self and found that it doesn't read the line in properly........................................................
<p>
import java.io.*;
</p>
<p>
public class JfitEX2 {
public static String test2 = null;
public static String test1 = null;
public static String age;
public static int t1 ='0';
public static int t2='0';
public static int aver='0';
public static int Jfit='0' ;
public static void main (String[] args) {
BufferedReader br;
BufferedReader b2;
BufferedReader b3;
// prompt the user to enter their name
System.out.print("after playing please give" + "\n your two test scores" + "\n we'll return jfit age \n");
System.out.println("Enter your test 1 score?: ");
// open up standard input
br = new BufferedReader(new InputStreamReader(System.in));
// read the username from the command-line; need to use try/catch with the
// readLine() method
try {
test1 = br.readLine();
System.out.print(test1);
} catch (IOException ioe) {
System.out.println("IO error trying to read your name!");
System.out.println(test1);
System.out.print("Enter your test 2 score?: ");
// open up standard input
b2 = new BufferedReader(new InputStreamReader(System.in));
// read the username from the command-line; need to use try/catch with the
// readLine() method
try {
test2 = b2.readLine();
System.out.print(test2);
} catch (IOException ioe) {
System.out.println("IO error trying to read your name!");
System.out.println(test2);
System.out.print("What is your actual age score?: ");
// open up standard input
b3 = new BufferedReader(new InputStreamReader(System.in));
// read the username from the command-line; need to use try/catch with the
// readLine() method
try {
age = b3.readLine();
System.out.print(age);
} catch (IOException ioe) {
System.out.println("IO error trying to read your name!");
System.out.println(age);
Calulate();
Output();
System.exit(0);
</p>
<p>
public static void Calulate(){
t1=Integer.parseInt(test1);
System.out.println(t1);
t2=Integer.parseInt(test2);
System.out.println(t1);
aver = t1 + t2 / '2' ;
System.out.println("uuuuuu" + aver);
Jfit = aver * 8 /6 +15;
public static void Output(){
System.out.println("Test 1 , " + test1);
System.out.println("Test 2 , " + test2);
System.out.println("the AVerage is " + aver);
System.out.println("your actual age is , " + age);
System.out.println("Your JFIT age is" + Jfit);
System.out.println("");
}// end of ReadString class

<p>
Below is the response from command prompt
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
Enter your test 2 score?: 9
What is your actual age score?: 20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
Enter your test 2 score?: 9
What is your actual age score?: 20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
Enter your test 2 score?: 9
What is your actual age score?: 20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
JfitEX2.java:46: ';' expected
System.out.println(br3)
^
1 error
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: java.io.BufferedReader@3e25a5
11
Enter your test 2 score?: java.io.BufferedReader@addbf1
9
What is your actual age score?: java.io.BufferedReader@42e816
20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
Enter your test 2 score?: 9
What is your actual age score?: 20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
JfitEX2.java:51: cannot find symbol
symbol : variable br3
location: class JfitEX2
age = br3.readLine();
^
1 error
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
Enter your test 2 score?: 9
What is your actual age score?: 20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
11
Enter your test 2 score?: 9
9
What is your actual age score?: 20
20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?: 11
11
Enter your test 2 score?: 9
9
What is your actual age score?: 20
20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?:
11
11
Enter your test 2 score?: 9
9
What is your actual age score?: 20
20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?:
11
11
Enter your test 2 score?: 9
9
What is your actual age score?: 20
20
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?:
23
23
Enter your test 2 score?: 42
42
What is your actual age score?: 60
60
23
23
uuuuuu23
Test 1 , 23
Test 2 , 42
the AVerage is 23
your actual age is , 60
Your JFIT age is45
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>javac JfitEX2.java
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>java JfitEX2
after playing please give
your two test scores
we'll return jfit age
Enter your test 1 score?:
11
1111
Enter your test 2 score?: 9
99
What is your actual age score?: 20
2020
11
11
uuuuuu11
Test 1 , 11
Test 2 , 9
the AVerage is 11
your actual age is , 20
Your JFIT age is29
</p>
<p>
C:\Users\nazim-mer\Desktop\PDF\QMUL\OOP>
</p>

Similar Messages

  • My Iphone 5 does this weird thing where it just freezes, some random vertical lines show up, and shuts off. Does anyone know what the cause of this is?

    My Iphone 5 does this weird thing where it just freezes, some random vertical lines show up, and shuts off. Does anyone know what the cause of this is?

    Backup and restore your software via iTunes. If the problem continues, restore as a NEW device. If this solves it, that means there is some corruption in your backup file, or maybe it's one of your apps causing the trouble. If the problem is still there, you should take it to the Genius Bar at an Apple Store for evaluation.

  • Help, NOTHING works, have watsted hours on this #@! thing

    I have years of experience with several NLE systems, but Premier Elements 10 is kicking my tail.
    Consider the simplest of projects where two gopro units are placed on a kayak, one pointed forward in the direction of travel, the second pointed backward (at the person rowing).
    Each clip is about 15 minutes in duration, bot occur at the same time (overlap).  i would  simply like to select between to two views (forward vs reverse) for my cuts-only program.
    So  far i have encountered the following problems, design errors in Premiew Elements 10.
    1. Unable to align botth AV tracks in time.  I smacked the hull with the paddle (similar to a clapper board) to provide a simple way to align the fwd/rev views.  Premeir will not allow me to shift (align) the AV tracks with less then 1-second accuracy.  I even tried turning off "snap", but program refuses to permit frame-accurate shift between tracks.
    2. Program will not allow me to switch between "Video 1" and "Video 2" tracks in preview window.  Depending on the last clip dragged to the timeline, only one can be selected.  How the $#@! can one determine the edit points if one cannot view the various tracks that are aligned in time??????????????
    3 Using classing video editing terminology, my clips may be condiered video "bus 1" and video "bus 2".  How does one select one or the other for output to the "output bus" ??        !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
       I HAVE WASTED AN ENTIRE AFTERNOON ON THIS  !!!!!!!!!!!!!!!!!
    I have observed several other glaring design errors in this program- but thats another post...

    nealeh wrote:
    whsprague wrote:
    Since my source is shot in 60p,
    Now that could give you a problem. Natively PRE10 does not support 60p, only 60i. However the following 'user written add-on preset' might help you out with that:
    Premiere Elements 10 (Windows): new editing presets for 1080p60/50, burn Bluray/AVCHD at 24p
    whsprague wrote:
    I could not split a frame
    No, PRE won't let you do that so 1/30th second is the best you'll get. Same with audio, frame level is the best you can get within PRE. But, while a little tedious, you can export the audio from PRE; edit it with an external audio editor (e.g. the free Audacity, or my favourite (the aging but still working) Magix Audio Cleaning Lab) to add or subtract smaller time units; and import it back to PRE.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    It seems to be commonly assumed on this board that PRE10 does not like 60p.  I didn't know that, so I started using 60p source material from both a Panasonic and Sony camera a few months ago.   I have Windows 7 and PRE10 both installed as 64 bit on an i5 Toshiba laptop with no video card and 8 gigs of ram.
    My project preset is AVCHD LITE 720p60 and please note that it is "natively supplied" as a choice.  It does not produce a red render line when 1080p60 files are read into PRE10.  If you use a 60i preset, a red render line is displayed. 
    At production time there are the usual choices for YouTube, DVDs and (often overlooked) the high definition "AVCHD disc" that plays HD on most Blu-Ray players.  Although a little hidden, 1080p60 is a "natively supplied" choice.  Go to Share>Computer>AVCHD and click Presets.  Select "MP4 - H264 1920x1080p30" from the drop down menu.  Push the Advanced button, go down to the Frame Rate button and select the Adobe supplied "59.94".   Save it as a preset for future projects. 
    Another indication that it is "natively supplied" is the time line itself.  At full magnification there are 60 hash marks between each second. (Probably because I selected a 60p project preset.)  If you watch the frame counter and click ahead one frame at a time, you can watch it go through 60 frames before a second rolls over.
    The default bit rate (in my chosen PRE10 provided preset) is a little higher than the source clip bitrate.  Consequently, if you use these settings on a single clip and render, the final MP4 file is a little larger than the original.  But it sure plays nice on my laptop with Splash Lite or on my 55" HD TV with a WD TV Live Media Player.  Please note, that the creation of a 1080p60 file for viewing has limited playback options.  It certainly does not make sense for uploading to YouTube or as a workflow step in making a DVD. 
    1080p output is not for everybody.  But, there are "purists" with newer 1080p TVs and camcorders that want to make video from their1080p clips that can be perceived to be equal to the source footage quality.  In fact, I think almost everyone with a new camcorder gets 1080p!  With all due respect to the long timers here, to suggest on an Adobe forum that Adobe's primary consumer NLE can't or won't do it is a disservice to Adobe. 
    I have also read in various places where people do have trouble with 1080p60 files.  I can't test or prove it, but it seems to be important that it be PRE10, 64 bit and more than minimum memory for reasonable operation. 
    So, in summary, choosing a project preset that makes the work flow fairly smooth on a midgrade laptop and making one change to a Share preset you get 1080p60 output.  To me that's pretty close to "native" even if it is not outlined in a step by step procedure in the instructions.  It is still in there, so an Adobe programmer in India must have put it there.
    Bill

  • I had this weird thing call me, can someone help?

    [6:03 PM] REPAIR© ONLINE HELP: REPAIR© ONLINE HELP <----- I had this thing call me and I have no idea what it is, has this called anyone else? Or have anyone else seen something like this?
    Solved!
    Go to Solution.

    please visit the thread below for instructions and suggestions on how to deal with such unwanted and suspicious activities;
    How to Handle Suspicious Calls, Messages and Contact Requests (Scam/Spam)
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Help. Can't purchase iWork get this weird error.

    When my wife tries to purchase Apples Numbers from the App Store it won.t let her and gives the following error...
    She is signed in to her account OK and has no trouble purchasing music etc through iTunes.
    Any help greatly appreciated.

    Done that, didn't help. Changing Cirtificate prefs in Keychain enabled the purchase. However now the App's not installing even though it says it is. Hvae tried installing half a dozen times, each time the app doesn't appear in apps folder!

  • Safari help!! I'm new to this iPhone thing

    Down loaded 8.1.3 on my iPhone 6 and now when I open safari and click on the browser it doesn't go back to the screen with the search engines and my past search history please help

  • Need help for connecting Ms Acces with java Swing in Mac OS

    Hi all,
    i need to connect to Ms Access in MAc os through my java swing program.
    Is it possible for accessing Ms access through dsn in Mac OS.
    If Possible which driver shall i use for Establishing Connection with MS Access in Mac OS.
    Suggestion is needed urgently.
    Can anybody help me out regarding this..
    Thanks in advance.
    Regards,
    sreand

    if I don't find a better solution I'll try your 2nd option but what do you mean by "combo" update?
    My understanding is to simply insert the OS 10.5 installation CD, reinstall the OS and the just keep updating it via the OS SSoftware update panel and stop untill I see the scary Java 8 update. Is that what you meant?
    While you can do it that way, the combo update picks up operating system updates through a collection of releases. When dealing with operating system upgrades, I've found using the combo updates to be more reliable than Software Update, as sometimes Software Update doesn't apply updates correctly, and weird things can happen. Doesn't happen often though, thankfully.
    So the OS X 10.5.5 Combo update contains all updates between 10.5.0 and 10.5. The 10.5.8 combo update contains the updates from 10.5 thru 10.8. Here are the updates:
    10.5 combo update: http://support.apple.com/kb/DL692
    10.8 combo update: http://support.apple.com/kb/DL866
    If you go down the combo path, repair permissions before and after doing each update. Then do Software Update for any other non-OS X updates, and don't apply the Java Update 8.

  • Help needed In developing project in Java

    Hi guys I am Developing a project in Java.
    This program test processor performance.
    Of system.
    Please tell me which packages to use and what will be basic logic required.
    basically Test, counter, and help will be used I think.

    Note: This thread was originally posted in the [Java Programming|http://forums.sun.com/forum.jspa?forumID=31] forum, but moved to this forum for closer topic alignment.

  • Need help with a graduate student project

    Hi Apple Community!
    My name is Gordon and I'm posting here to see if I could possibly interview someone via email or over the phone for a training project I am doing for a course in Graduate School. I'm a first year Industrial and Organizational Psychology masters student attending San Francisco State University. The main purpose of this project is to help me get familiar with the entire process of developing, carrying out, and evaluating a technical training. I have chosen to create a training for iWork 09' because most of my class mates (myself included), have not had much experience with the program. My original idea was to tailor the training towards sales individuals, but I can modify that depending on who I'm able to interview (educators and other professionals).
    The kind of person I'm looking to interview must either train others on how to use iWork and/or uses iWork themselves for work on a regular basis. It would be best if you are familiar with all 3 programs, but it is fine if you only use one or two of the programs. The entire interview will take no longer than 30 minutes, and if it's over email it'll just take two messages (1 for the original set of questions and a follow up email asking to expand on some of the original answers). As a part of my professor's requirement I will also need your contact information including: name, title, affiliation, address, phone number and email address. I don't believe my professor will actually be contacting you to verify that I haven't cheated on the assignment though.
    Some sample questions include:
    1. In your line of work, what are some of your major responsibilities?
    2. How does iWork help you accomplish some of your work tasks/projects?
    3. If you've received formal training on iWork, what was the environment like, and what parts of the training did you find enjoyable and helpful; what parts did you dislike?
    etc.
    I cannot offer you any monetary compensation for your time. I can only give you my sincere thanks, and perhaps send you a copy of my training outline when I'm finished with it.
    Thanks in advanced for your help and time!
    Please reply to this thread if you're able to help me with my project.

    Hi Apple Community!
    My name is Gordon and I'm posting here to see if I could possibly interview someone via email or over the phone for a training project I am doing for a course in Graduate School. I'm a first year Industrial and Organizational Psychology masters student attending San Francisco State University. The main purpose of this project is to help me get familiar with the entire process of developing, carrying out, and evaluating a technical training. I have chosen to create a training for iWork 09' because most of my class mates (myself included), have not had much experience with the program. My original idea was to tailor the training towards sales individuals, but I can modify that depending on who I'm able to interview (educators and other professionals).
    The kind of person I'm looking to interview must either train others on how to use iWork and/or uses iWork themselves for work on a regular basis. It would be best if you are familiar with all 3 programs, but it is fine if you only use one or two of the programs. The entire interview will take no longer than 30 minutes, and if it's over email it'll just take two messages (1 for the original set of questions and a follow up email asking to expand on some of the original answers). As a part of my professor's requirement I will also need your contact information including: name, title, affiliation, address, phone number and email address. I don't believe my professor will actually be contacting you to verify that I haven't cheated on the assignment though.
    Some sample questions include:
    1. In your line of work, what are some of your major responsibilities?
    2. How does iWork help you accomplish some of your work tasks/projects?
    3. If you've received formal training on iWork, what was the environment like, and what parts of the training did you find enjoyable and helpful; what parts did you dislike?
    etc.
    I cannot offer you any monetary compensation for your time. I can only give you my sincere thanks, and perhaps send you a copy of my training outline when I'm finished with it.
    Thanks in advanced for your help and time!
    Please reply to this thread if you're able to help me with my project.

  • Help calling JNI function from a java thread

    I am using the following code to call a JNI fuction from a java thread:
    public class CMSMessageHandler extends MessageHandler{
    static{
    System.loadLibrary("jastb");
    public native int cmsReadIt(ByteBuffer buff);
    private ByteBuffer dirbuf = null;
    /** Creates a new instance of CMSMessageHandler */
    public CMSMessageHandler() {
    // allocate to max size datagram
    dirbuf = ByteBuffer.allocateDirect(65536);
    public void readMessages(){
    /*Thread worker = new Thread(){
    public void run(){*/
    int count;
    while (true){
    try{
    count = cmsReadIt(dirbuf);
    } catch (Exception e){
    e.printStackTrace();
    worker.start();*/
    public static void main(String[] args) {
    CMSMessageHandler handler = new CMSMessageHandler();
    handler.readMessages();
    When I run this main method with the thread commented out, it works great. When I run the main method with the thread, it works great for a while, and then funny things start happening with the native library I am using. My native library uses shared memory, signals, and semaphores. It feels a bit like my java program is stomping on the resources that my native library is using, when a run the java program with a thread.
    Is there something I don't know about calling native code from a thread? Should I be doing something explicitly to protect my native library's shared memory, signals, or semaphores?
    Thanks,
    Lisa.

    Does the library do any initialization when loaded? Does it make a dangerous assumption that the thead calling cmdReadIt will always be the same thread that initially loaded it? Try loading the library in the worker thread instead of in the main thread via the static initializer.Yes. There is a call to another native method cmsOpenIt that does CMS initialization. I put cmsOpenIt as well as the System.loadLibrary("jastb") in the worker thread and I'm still experiencing the same problems.
    Incidently, the mere presence of another Thread in this program does not seem to cause problems. It's only when I run calls to cmsReadIt in a thread that I get into trouble.
    For example, this works fine:
    public class CMSMessageHandler extends MessageHandler{
        public native int cmsReadIt(ByteBuffer buff);
        public ByteBuffer dirbuf = null;
        static {
            System.loadLibrary("jastb");
        public CMSMessageHandler() {
            // allocate to max size datagram
            dirbuf = ByteBuffer.allocateDirect(65536);
        public void readMessages(){
            try{
                int count = 0;
                while (true){
                    count = cmsReadIt(dirbuf);
            } catch (Exception e){
        public static void main(String[] args) {
            CMSMessageHandler handler = new CMSMessageHandler();
            Thread worker = new Thread(){
                public void run(){
                    while (true){
                        try{
                            Thread.currentThread().sleep(1000);
                            System.out.println("sleep thread.");
                        } catch (Exception e){
                            e.printStackTrace();
            worker.start();
            handler.readMessages();  
        }Are there JVM flags that I should experiment with that might help mitigate/diagnose this problem?

  • How to study java networking?

    Recently i want to study java networing, bug i don't know how to study it.
    I have saw some examples about it, but i don't think it's helpful to me, can you give me some suggestion on it?
    Thanks.

    [or my book|http://www.telekinesis.com.au/wipv3_6/FundamentalNetworkingInJava.A21]
    Even available in Japanese ;-) translated by the redoubtable hiwa.

  • Why does my safari browser frequently gives me a gray screen? I resetted my safari many times and it doesn't help. Also sometimes when I scroll it gives me this weird scrolling effect where everything is either upside or messed up.

    Why does my safari browser frequently gives me a gray screen? I resetted my safari many times and it doesn't help. Also sometimes when I scroll it gives me this weird scrolling effect where everything is either upside or messed up.

    This article is for startup but it might help.  http://support.apple.com/kb/ts2570

  • If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    Hello,
    As frustrating as it seems, your best to post any frustrations about the iPhone in the  iPhone discussion here:
    https://discussions.apple.com/community/iphone/using_iphone
    As this discussion is for iBook laptops.
    Best of Luck.

  • Help Needed - My BB 8520 Curve has this message-CRTranRec::GetLinkedRecordID:Invalid linked record id while sychronisation using the desktop software

    Hi!
    Need some help with the same:
    Help Needed - My BB 8520 Curve has this message-CRTranRec::GetLinkedRecordID:Invalid linked record id while sychronisation using the desktop software

    Hi sameer197301 and welcome to the BlackBerry Support Community Forums!
    To clarify, are you seeing this message displayed on your BlackBerry® smartphone or on your computer?
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • HT6154 Can someone please just help me figure out how to update this stupid phone without losing anything? I somehow have more than one Apple ID on this,but I just want my music and my pictures to stay and I'm terrified of losing these things.

    Can someone please just help me figure out how to update this stupid phone(iPhone 4)without losing anything? I somehow have more than one Apple ID on this,but I just want my music and my pictures to stay and I'm terrified of losing these things. I have a lot of music from old CDs on here,and for some reason I can't even transfer them manually onto my computer. I'm not tech savvy whatsoever. Someone please help,having my music is the the whole reason I still have this phone.

    First read about back http://support.apple.com/kb/ht1766
    Then  read on how to transfer photos to your computer http://support.apple.com/kb/ts3195
    Then
    UPDATING iOS
    Over the air updating of iOS needs iOS 5 or later so unless you have iOS 5 or later you will not see updating in setting
    The following link explains how to update http://support.apple.com/kb/HT4972
    This link explains how to update using wireless http://support.apple.com/kb/HT4623
    This explains how to transfer purchases to your computer http://support.apple.com/kb/ht1848

Maybe you are looking for

  • How to Change the default Search value for Field Role?

    HI, I went through numerous threads on how to default the search value , but does not help for my issue. Hence im posting this new thread. Please provide your suggestions on how to achieve this. For the Ship-to party field (in item detail )  on webui

  • Translation of  ITS Screen Parameters in ECC 6.0

    Hi , I have added 3 new parameters to ITS Screen , need to translate the parameter description to  FR language . Need  help on how to maintain the language translation to the ITS screen parameters  in ECC 6.0 Please find below are my findinds 1.  In

  • Apple is silly.

    -------------------------------------------------------------------------------- Alright, so a couple days back i had some issues with my ipod.. so I call them up right? they issue an RMA and tell me to print out these labels and send it back and as

  • Ideas for dashboards

    hi can anyone give me ideas for a decent management dashboard for VC.our management has suddenly become fast track and wants everything fast. so help will be appreciated. regards, Olaf

  • Primay db - open resetlogs ?

    In 11gr2 On primary db 1. create restore point before_spl_batch_run gurantee flashback 2 . insert the data /*incase customers wants the restore point 3. srvctl stop database -d 4. sqlplus / as sysdba 5. startup mount 6. flashback restore point to bef