Very new to java please help

i'm very new to java and i'm getting an error in my application. i took 4 applications that compiled and worked separatly and i tried to combine them into one application. i'm getting the error: unreported exception java.io.IOException; must be caught or declared to be thrown, in lines 73,78,83,88,120,146,149,152,155 in the and it points at the keyboard.readLine() but everything i've tried just gives me more errors. please help anything and everything will be greatly appreciated. here it is, sorry about format i dunno how to straighten it in here:
// ^ ^
//               (0)(0) A Happy Piggy Application
// Problems: 2.6,2.8,2.9,2.12 (oo)
// An application finds the total number of hours, minutes, & seconds, finds the distance
// between two points, finds the volume and surface area of a sphere, and adds up the change
// in a jar. First, the total hours, minutes, and seconds problem.
import java.io.*;
import java.text.DecimalFormat;
import java.text.NumberFormat;
public class twoptsix
     static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
     static PrintWriter screen = new PrintWriter(System.out, true);
     public static void main (String[] args) throws IOException
          double hoursa, minutesa, secondsa;
          String hours;
          System.out.print ("Please enter a number of hours: ");
hours = keyboard.readLine();
hoursa = Double.parseDouble(hours); //asks programmer friendly user to enter hours
String minutes;
System.out.print ("Please enter a number of minutes: ");
minutes=keyboard.readLine();
minutesa = Double.parseDouble(minutes); //asks programmer friendly user to enter minutes
String seconds;
System.out.print ("Pretty please enter a number of seconds: ");
seconds = keyboard.readLine();
secondsa = Double.parseDouble(seconds); //asks programmer friendly user to enter seconds
double allseconds;
allseconds = (hoursa * 3600) + (minutesa * 60) + secondsa; //adds up all the seconds of the time entered
System.out.println ("You have: " + hours + " hours..."); //displays hours
System.out.println ("" + minutes + " minutes..."); //displays minutes
System.out.println ("and " + seconds + " seconds..."); //displays seconds
          System.out.println ("to get whatever you need to done!"); //witty attempt at humor
System.out.println ("The total amount of seconds is: " + allseconds + " seconds."); //displays total seconds
// An application that finds the distance between two points when the points
// are given by the user.
          double x1, x2, y1, y2, total, distance;
          String xa;
          System.out.print ("Please enter the 'x' coordinate of first point: ");
          xa = keyboard.readLine();
          x1 = Double.parseDouble(xa); //asks programmer friendly user to enter first x value
          String ya;
          System.out.print ("...also need the 'y' coordinate of first point: ");
          ya = keyboard.readLine();
          y1= Double.parseDouble(ya); //asks programmer friendly user to enter first y value
          String xb;
          System.out.print ("...and the 'x' coordinate of the second point: ");
          xb = keyboard.readLine();
          x2 = Double.parseDouble(xb); //asks programmer friendly user to enter second x value
          String yb;
          System.out.print ("...don't forget the 'y' coordinate of the second point: ");
          yb = keyboard.readLine();
          y2 = Double.parseDouble(yb); //asks programmer friendly user to enter second y value
          total = Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0); //squares the differences of values
          distance = Math.sqrt(total); //finds the square root of the sum of the differences of the values
          System.out.print ("E=mc^2...oh and,");
          System.out.print ("the distance between point (" + xa +"," + ya +") and point("+
          xb + "," + yb + ") is : " + distance);
// An application that takes the radius of a sphere and finds and prints
// the spheres volume and surface area.
          double radius,volume,area;
          String rad;
          System.out.print("Please enter the radius of a sphere: ");
          rad = keyboard.readLine();
          radius = Double.parseDouble(rad); //asks programmer friendly user to enter the radius of a sphere
DecimalFormat fmt = new DecimalFormat ("0.####");
          volume = ((4 * Math.PI * Math.pow(radius,3.0)) / 3) ;
          System.out.println (" The sphere has a volume of:" + fmt.format(volume)); //finds and displays volume
          area = ( 4 * Math.PI * Math.pow(radius, 2.0)) ;
          System.out.print (" The Surface Area of the sphere is: " + fmt.format(area)); //finds and displays surface area
// An application that finds the total, in dollars and cents, of a number of quarters,
// nickels, dimes, and pennies in your piggy bank.
          int pennies, nickels, dimes, quarters;
          double money1;
          screen.println("Empty your piggy bank and count the change, how many quarters ya have?: ");
          int q = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of quarters
          screen.println("How many dimes?: ");
          int d = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of dimes
          screen.println("How many nickels?: ");
          int n = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of nickels
          screen.println("How many pennies?: ");
          int p = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of pennies
          NumberFormat money = NumberFormat.getCurrencyInstance();
          money1 = (.25 * q) + (.1 * d) + (.05 * n) + (.01 * p);
          screen.println("You're rich! Total, you've got: " + money.format(money1));//finds and displays total money

Ok here is the working code as one long function:
// ^ ^
// (0)(0) A Happy Piggy Application
// Problems: 2.6,2.8,2.9,2.12 (oo)
// An application finds the total number of hours, minutes, & seconds, finds the distance
// between two points, finds the volume and surface area of a sphere, and adds up the change
// in a jar. First, the total hours, minutes, and seconds problem.
import java.io.*;
import java.text.DecimalFormat;
import java.text.NumberFormat;
public class twoptsix
    static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
    static PrintWriter screen = new PrintWriter(System.out, true);
    public static void main (String[] args) throws IOException
double hoursa, minutesa, secondsa;
String hours;
System.out.print ("Please enter a number of hours: ");
hours = keyboard.readLine();
hoursa = Double.parseDouble(hours); //asks programmer friendly user to enter hours
String minutes;
System.out.print ("Please enter a number of minutes: ");
minutes=keyboard.readLine();
minutesa = Double.parseDouble(minutes); //asks programmer friendly user to enter minutes
String seconds;
System.out.print ("Pretty please enter a number of seconds: ");
seconds = keyboard.readLine();
secondsa = Double.parseDouble(seconds); //asks programmer friendly user to enter seconds
double allseconds;
allseconds = (hoursa * 3600) + (minutesa * 60) + secondsa; //adds up all the seconds of the time entered
System.out.println ("You have: " + hours + " hours..."); //displays hours
System.out.println ("" + minutes + " minutes..."); //displays minutes
System.out.println ("and " + seconds + " seconds..."); //displays seconds
System.out.println ("to get whatever you need to done!"); //witty attempt at humor
System.out.println ("The total amount of seconds is: " + allseconds + " seconds."); //displays total seconds
// }  <----- MAIN FUNCTION USED TO END HERE!!!
//but we want to keep going so remove the bracket!
// An application that finds the distance between two points when the points
// are given by the user.
// {  <-- other function used to start here, but now it continues
double x1, x2, y1, y2, total, distance;
String xa;
System.out.print ("Please enter the 'x' coordinate of first point: ");
xa = keyboard.readLine();
x1 = Double.parseDouble(xa); //asks programmer friendly user to enter first x value
String ya;
System.out.print ("...also need the 'y' coordinate of first point: ");
ya = keyboard.readLine();
y1= Double.parseDouble(ya); //asks programmer friendly user to enter first y value
String xb;
System.out.print ("...and the 'x' coordinate of the second point: ");
xb = keyboard.readLine();
x2 = Double.parseDouble(xb); //asks programmer friendly user to enter second x value
String yb;
System.out.print ("...don't forget the 'y' coordinate of the second point: ");
yb = keyboard.readLine();
y2 = Double.parseDouble(yb); //asks programmer friendly user to enter second y value
total = Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0); //squares the differences of values
distance = Math.sqrt(total); //finds the square root of the sum of the differences of the values
System.out.print ("E=mc^2...oh and,");
System.out.print ("the distance between point (" + xa +"," + ya +") and point("+
     xb + "," + yb + ") is : " + distance);
//second function used to end here...
//} <--- COMMENT OUT BRACKET SO WE CONTINUE
// An application that takes the radius of a sphere and finds and prints
// the spheres volume and surface area.
//{ <--- ANOTHER ONE TO COMMENT OUT
double radius,volume,area;
String rad;
System.out.print("Please enter the radius of a sphere: ");
rad = keyboard.readLine();
radius = Double.parseDouble(rad); //asks programmer friendly user to enter the radius of a sphere
DecimalFormat fmt = new DecimalFormat ("0.####");
volume = ((4 * Math.PI * Math.pow(radius,3.0)) / 3) ;
System.out.println (" The sphere has a volume of:" + fmt.format(volume)); //finds and displays volume
area = ( 4 * Math.PI * Math.pow(radius, 2.0)) ;
System.out.print (" The Surface Area of the sphere is: " + fmt.format(area)); //finds and displays surface area
// } <----- COMMENTED OUT FOR THE SAME REASON
// An application that finds the total, in dollars and cents, of a number of quarters,
// nickels, dimes, and pennies in your piggy bank.
//{ <----AND ANOTHER
int pennies, nickels, dimes, quarters;
double money1;
screen.println("Empty your piggy bank and count the change, how many quarters ya have?: ");
int q = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of quarters
screen.println("How many dimes?: ");
int d = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of dimes
screen.println("How many nickels?: ");
int n = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of nickels
screen.println("How many pennies?: ");
int p = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of pennies
NumberFormat money = NumberFormat.getCurrencyInstance();
money1 = (.25 * q) + (.1 * d) + (.05 * n) + (.01 * p);
screen.println("You're rich! Total, you've got: " + money.format(money1));//finds and displays total money
}P.S. To make the code formatted better put [ code ] before and [ /code ] after. It's not perfect, but a little better...

Similar Messages

  • M new to this forum + new to java please help me with file handling program

    hi i want to make a file handling program where in i want to input a text file say f1 whose style is mentioned as below
    aaa...bcd
    aaabbc
    acdce
    a..dd
    abbcd
    now i want to write d out put of file f1 to file f2 but only those string entries widout any ... in them how to do that :-(( please help :((

    import java.io.*;
    import java.lang.*;
    class javcsse{
             void javsce (){
              BufferedReader in;
            PrintWriter out;
            String line;
            try
                in = new BufferedReader(new FileReader("e:\\cntcs\\n7.txt"));
                out = new PrintWriter("e:\\cntcs\\n8.txt");
               line = in.readLine();
               while(line != null)
                     if(line.contains("...") && line.contains("....")){
                         break ;                
                         else{
                               if(line.contains("cc"))
                              System.out.println(line+"\n");
                                      out.println(line);
                    line = in.readLine();
                in.close();
                out.close();
            } catch (Exception ex)
                System.err.println(ex.getMessage());
      public class javcse{
        public static void main(String[] args) {
            new javcsse();
    }hey i wrote this code yet could u tell y is it still not working :((

  • I am new to java please help!!

    please help ive got a method thta i wanto to use it in another class, but it does not work.
    //prueba.java
    import java.io.*;
    public class prueba
    public int numero3;
    public int suma(int numero1,int numero2)
    int numero3=numero1+numero2;
    return numero3;
    //prueba1.java
    import javax.servlet.*;
    import java.io.*;
    import javax.servlet.http.*;
    import prueba;
    public class prueba1 extends HttpServlet
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException
    PrintWriter out = res.getWriter();
    int num1=1;
    int num2=1;
    prueba uno=new prueba();
    out.println(uno.suma(2,3));
    when i ty to complie this file it throws me thie errors:
    C:\resin-2.0.b2\doc\content-manager\admin\web-inf\classes\prueba1.java:4: cannot resolve symbol
    symbol: class prueba
    import prueba;
    ^
    C:\resin-2.0.b2\doc\content-manager\admin\web-inf\classes\prueba1.java:15: cannot resolve symbol
    symbol : class prueba
    location: class prueba1
    prueba uno=new prueba();
    ^
    C:\resin-2.0.b2\doc\content-manager\admin\web-inf\classes\prueba1.java:15: cannot resolve symbol
    symbol : class prueba
    location: class prueba1
    prueba uno=new prueba();
    ^
    3 errors
    Tool completed with exit code 1
    both , prueba1.java and prueba.java are in the same folder.

    C:\resin-2.0.b2\doc\content-manager\admin\web-inf\classes\prueba1.java:15: cannot resolve symbol
    symbol : class prueba
    location: class prueba1
         prueba uno=new prueba();
    ^
    C:\resin-2.0.b2\doc\content-manager\admin\web-inf\classes\prueba1.java:15: cannot resolve symbol
    symbol : class prueba
    location: class prueba1
         prueba uno=new prueba();
    ^
    2 errors

  • Totally New in Java - Please help!!

    Hi Dear all,
    l am totally new in Java, and l facing one problem,and really hope can get some help from yours,please!
    l need to write this program:
    The program should do the following:
    1. Input two fields: action (action: add / delete), and account number (any
    digit or character)
    2. if the action is "add" then the program adds one text line to a text
    file.
    "New account is <account number>"
    3. create the text file if it is not already exist (in c:\)
    4. When program runs again with new input values, a new line will be
    appended to the same file.
    5. if the action is "delete" then the program finds the record and removes
    the text line from the file.
    My problem is :
    l just know that l need to create the user interface first,but l don't know how to go on??
    Would you please show me some step how to solve these problem?
    Many many thanks!!
    BaoBao

    I don't know about Swing. I never use it.
    The stuff to create and manipulate files is in the java.io package.
    You'll probably want to use java.io.FileReader and java.io.FileWriter.
    Note that FileWriter has a constructor that lets you append and not overwrite.
    I'll start you off with a test.
    public class AccountListAddTest() {
      public static void main(String[] argv) {
        AccountList accts = new AccountList();
        accts.add("abcdefg12345"); // arg is a hypothetical account number
    }Write an AccountList class that'll work if you compile and run this test. After you run this test for the first time, the file should contain the string
    New account is abcdefg12345.
    This test assumes that the filename is hardcoded into the AccountList class. To keep it simple, make the add method create a new appending FileWriter each time, write, then close the writer.

  • New to Java, Please help

    Hi, I was trying to play a game and came up with this java error (below), I uninstalled and reinstalled still no fix. I think i need a new class?, If anyone can explain the potential problem to me and help me fix it, that would be much appreciated. I'm a complete NEWB when it comes to java, I'm not even sure how to edit that code. so please remember to explain in the newbiest of newby answers. I am proficient with features of a computer just not java.
    Java Plug-in 1.6.0_24
    Using JRE version 1.6.0_24-b07 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Ethan
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    load: class loader.class not found.
    java.lang.ClassNotFoundException: loader.class
    at sun.plugin2.applet.Applet2ClassLoader.fi… Source)
    at sun.plugin2.applet.Plugin2ClassLoader.lo… Source)
    at sun.plugin2.applet.Plugin2ClassLoader.lo… Source)
    at sun.plugin2.applet.Plugin2ClassLoader.lo… Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.lo… Source)
    at sun.plugin2.applet.Plugin2Manager.create… Source)
    at sun.plugin2.applet.Plugin2Manager$Applet… Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassNotFoundException: loader.class

    845681 wrote:
    Hi, I was trying to play a game and came up with this java error (below), I uninstalled and reinstalled still no fix. I think i need a new class?, If anyone can explain the potential problem to me and help me fix it, that would be much appreciated. I'm a complete NEWB when it comes to java, I'm not even sure how to edit that code. so please remember to explain in the newbiest of newby answers. I am proficient with features of a computer just not java.If you want to learn how to program java, which is not the same as playing that particular game then you can start with the following link.
    http://download.oracle.com/javase/tutorial/getStarted/index.html

  • Very new in Java pls help!!!!!!

    hello,
    i just started to learn java and trying to do my first program, but dont know why i cant do that! it asking me to set my PATH in sdk bin folder with jdk and i dont know how to do that, couse i install it in diferent folders! im trying to set c:\jdk1.6\bin;%PATH% but writing "environment variable c:jdk1.6\bin;C:\windows\system32;C:\windows;C:\windowasystem32\wbem;C;\program files\cyberlink\power2Go\C:\sun\SDK\bin not defined" help me please!!!

    - Right click 'my computer', select 'properties'.
    - Click the 'advanced' tab.
    - click the 'environmental variables' button
    Here you will find the PATH environmental variable, most likely under system variables. Add the path to the JDK bin directory here.
    Note: If you have a command prompt open while you are doing this, open a new one as the old one will not see the changes you make. To make sure the PATH is valid, open a command prompt and type:
    echo %PATH%

  • New to java, please help me :(

    hi, i have to complete a BMI calculator with arrays and switch, i need it so that if input a / b is selected it will calculate metric / imperial (i know that both calcs are the same, its just a placeholder for the time being). once thats selected users are asked to input name, age, height and weight, then looped again for another user to input into the array.
    once completed the name and age along with the BMI calculation for all the users that have inputted are displayed
    the problem is, the calculations are wrong, where it should be outputting a BMI of between 20-23ish im getting 0.3
    i think i had this problem when i done the switch example previously, but to fix that i just lumped all the code (inputs and calcs) into each case. in this method im guessing that would be an incorrect approach ?
    btw, sorry for my layout, ive been debugging for ages now and havnt had time to clean it up :/
    thank you in advance and heres my code:-
    package bmicalculationex;
    import javax.swing.*;
    public class Main {
    public static void main(String[] args) {
    String output;
    double Hfeet=0, Wstone=0, Hinches=0, Wlbs=0;
    String Hfeetstr, Wstonestr, Hinchesstr, Wlbsstr, age;
    String name;
    double bmiweight=0, bmiheight=0, BMI=0;
    Item[] myItemArray = new Item[2];
    for(int i = 0;i<2;i++){
    myItemArray[i] = new Item();
    String input = JOptionPane.showInputDialog(
    "Welcome to Chunks BMI calculator\n"+
    "a) Metric.\n"+
    "b) Imperial\n"+
    "q) Quit\n"+
    "\nPlease enter letter code" );
    char code = input.charAt(0);
    switch(code){
    case 'a':
    output= "Imperial.";
    Wlbs = Wlbs * 0.45359237;
    Hinches = Hinches * 0.0254;
    Hfeet = Hfeet * 0.3048;
    Wstone = Wstone * 6.35029318;
    break;
    case 'b': output= "Metric.";
    Wlbs = Wlbs * 0.45359237;
    Hinches = Hinches * 0.0254;
    Hfeet = Hfeet * 0.3048;
    Wstone = Wstone * 6.35029318;
    break;
    default: output= "Error.";
    JOptionPane.showMessageDialog(null,"Invalid Selection.\n"+ "Please try again.");
    JOptionPane.showMessageDialog(null, "You have selected :- " + output + "\n\n" +" Thank you.");
    //User In-
    for(int c=0;c<2;c++){
    name = JOptionPane.showInputDialog("enter your name");
    age = JOptionPane.showInputDialog("enter your age");
    Hfeetstr = JOptionPane.showInputDialog("enter your Height");
    Hinchesstr = JOptionPane.showInputDialog("enter the remainder");
    Wstonestr = JOptionPane.showInputDialog("enter your weight");
    Wlbsstr = JOptionPane.showInputDialog("enter the remainder");
    Hfeet = Float.parseFloat(Hfeetstr);
    Wstone = Float.parseFloat(Wstonestr);
    Hinches = Float.parseFloat(Hinchesstr);
    Wlbs = Float.parseFloat(Wlbsstr);
    bmiweight = Wstone + Wlbs;
    bmiheight = Hinches + Hfeet;
    BMI = bmiweight / (bmiheight*bmiheight);
    myItemArray[c].setname(name);
    myItemArray[c].setyear(age);
    myItemArray[c].setBMII(BMI);
    String message = "";
    for(int n=0;n<2;n++){
    message = message + "Name :- " + myItemArray[n].getname() + " " + "Age :- " + " " + myItemArray[n].getaged() + "BMI :- " + " " +myItemArray[n].getBMI() +"\n";
    JOptionPane.showMessageDialog(null, message);
    }//end of main method
    }//end of main class
    class Item{
    private String namea;
    private String agea;
    private double BMIa;
    public Item(){
    agea = "";
    BMIa = 0;
    namea = "";
    public Item(String nameb, String ageb, double BMIb){
    namea = nameb;
    agea = ageb;
    BMIa = BMIb;
    public String getname(){
    return namea;
    public String getaged(){
    return agea;
    public double getBMI(){
    return BMIa;
    public String setname (String nameb){
    namea = nameb;
    return nameb;
    public void setyear(String ageb){
    agea = ageb;
    public void setBMII(double BMIb){
    BMIa = BMIb;
    }

    yush !
    i done it :D
    i just ended up lumping all the code into each case like i did last time, as when i had the calculations outside of the cases it wasnt taking the values from inside the case. nevermind....
    another problem i do have though, i need a loop so that once the program finishes it repeats itself until an X is entered, im not very good with loops :S
    i tend to try it like this
    quit = 1;
    while (quit<2){
    then just have one of the cases as quit +1
    so in mine it looks liek this:
    int quit=1;
    while (quit<2){
    String input = JOptionPane.showInputDialog(
    "Welcome to Chunks BMI calculator\n"+
    "a) Metric.\n"+
    "b) Imperial\n"+
    "q) Quit\n"+
    "\nPlease enter letter code" );
    char code = input.charAt(0);
    switch(code){
    case 'a':
    JOptionPane.showMessageDialog(null, "You have selected imperial. "+"\n\n" +" Thank you.");
    for(int c=0;c<2;c++){
    name = JOptionPane.showInputDialog("enter your name");
    age = JOptionPane.showInputDialog("enter your age");
    Hfeetstr = JOptionPane.showInputDialog("enter your Height in feet");
    Hinchesstr = JOptionPane.showInputDialog("enter the remaining inches");
    Wstonestr = JOptionPane.showInputDialog("enter your weight in stone");
    Wlbsstr = JOptionPane.showInputDialog("enter the remaining lbs");
    Hfeet = Float.parseFloat(Hfeetstr);
    Wstone = Float.parseFloat(Wstonestr);
    Hinches = Float.parseFloat(Hinchesstr);
    Wlbs = Float.parseFloat(Wlbsstr);
    Wlbs = Wlbs * 0.45359237;
    Hinches = Hinches * 0.0254;
    Hfeet = Hfeet * 0.3048;
    Wstone = Wstone * 6.35029318;
    bmiweight = Wstone + Wlbs;
    bmiheight = Hinches + Hfeet;
    BMI = bmiweight / (bmiheight*bmiheight);
    String cat="";
    if (BMI <18.5) cat = ("Posh spice");
    else if (BMI >= 18.5 && BMI <=25) cat = ("Fit !");
    else if (BMI >25 && BMI <=30) cat = ("Fatty !");
    else if (BMI >30)cat = ("Super Fatty");
    myItemArray[c].setcat(cat);
    myItemArray[c].setname(name);
    myItemArray[c].setyear(age);
    myItemArray[c].setBMII(BMI);
    break;
    case 'b': output= "Metric.";
    etc.....
    this is causing me the problems:
    for(int i = 0;i<2;i++){
    myItemArray[i] = new Item();
    says a non static variable cannot be referenced from a static context, i know im being stupid with my implementation, but whats a better way ?
    thanks again :)
    Edited by: Clunk on Nov 17, 2008 4:05 PM

  • Hello Guys. I had problems in the Computer before and changed my HD. I saved in my all files documents in (Time Capsule). How can I put all my files, pictures documents on my new HD? Please Help. Thank You

    Hello Guys.
    I had problems in the Computer before and changed my HD. I saved in my all files documents in (Time Capsule). How can I put all my files, pictures documents on my new HD?
    Please Help.
    Thank You
    Julio Skov

    Hey
    Thank you very much for replay.
    Would you explain to me how can I do?
    I don't really understand these processes.
    Thak you very much
    Julio

  • I am new to mac please help me basic tips an trick to use mac

    i am new to mac please help me basic tips an trick to use mac its very frustrating for any thing i have to call apple help line
    any acesserious to macbook air 13 like any silicon case or carry case or some acesserious
    i have delete contains of master folder of phothos still i can see phothos in my mac so how can i delete it

    Apple has a site for new users. Use it. Also, David Pogue is an excellent tech writer who has penned a series called the Missing Manual. I assume you've come to the Mac from the Windows world and he's written one especially for switchers. I've linked to the version for Mavericks (10.9) but if you have an earlier version of the Mac OS he's written a similar book for them as well.

  • Is there a way to run a 2005 PreSonus Firebox(with the firewire) to a mid-2011 iMac 0SX 10.7.2? It says its no longer supporting Power PC? Anything I can do without spending more money on new equipment or a new computer? Please help me.

    Is there a way to run a 2005 PreSonus Firebox(with the firewire) to a mid-2011 iMac 0SX 10.7.2? It says its no longer supporting Power PC? Anything I can do without spending more money on new equipment or a new computer? Please help me.

    Nevermind, I got it working.
    I ended up extracting the new vob within MPEG Streamclip, which gave me an m2v and an aiff audio. I multiplexed those two back together in FFMpegX which gave me a complete VIDEO_TS folder with BUP and IFO files I needed.

  • HT201272 I purchased an audiobook in Nov 2012 using iPhone 4S and then upgraded to iPhone 5 in Dec. Now I am not seeing the audio book in purchase history in iTunes. This means I am not able to get the book in my new iPhone. Please help

    I purchased an audiobook in Nov 2012 using iPhone 4S and then upgraded to iPhone 5 in Dec. Now I am not seeing the audio book in purchase history in iTunes. This means I am not able to get the book in my new iPhone. Please help.

    Audiobooks are currently a one-time only download from the store. If you don't have it on your computer (audiobooks go into the Books part of your iTunes library) nor on a backup, then if it's still in the store you can try contacting iTunes support and see if they will grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • I have no trouble viewing apps in the iTunes Store on my iPad. However, every time I try to install a new app, I get an error message after a while - cannot connect to iTunes Store. This issues cropped up two days ago on my new iPad. Please help...

    I have no trouble viewing apps in the iTunes Store on my iPad. However, every time I try to install a new app, I get an error message after a while - cannot connect to iTunes Store. This issues cropped up two days ago on my new iPad. Please help...

    JUst experienced the exact  same problem after changing password.Getting same message. Hope someone has an answer for this.

  • Whenever I connect my 4th generation iPod thouch, all of the playlists on my iPod get deleted. This is very frustrating. Someone please help me? I searched the settings on iTunes and couldn't find anything.

    Whenever I connect my 4th generation iPod thouch, all of the playlists on my iPod get deleted. This is very frustrating. Someone please help me? I searched the settings on iTunes and couldn't find anything.

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

  • Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Welcome to Apple Support Communities. We're users here and do not speak for "Apple Inc."
    Some basic printer troubleshooting steps before worrying about a printer driver:
    1. Have you tried turning the printer off and back on?
    2A. Is the printer attached with a cable?
         If yes, have you tried unplugging and re-plugging both ends of the printer cable?
         If that does not help, can you test the printer with another cable?
    2B. If your printer is not connected to the computer with a cable, have you tried restarting your printer (assuming wireless connection)?
         Have you tried restarting your wireless router?
    3. Have you tried restarting your MacBook? (Be sure to save your work first.)
    4. Does the printer have ink? (Doesn't usually generate a 'communications error' though)
    5. Have you updated OS X or the program you're trying to print from recently?

  • How to implement drop down list in WDP Abap....very urgent...please help me

    Hi Gurus,
    I wanted to implement the drop down list button in the WDP Abap interactive form. Once the users clicks on the drop down button, an RFC should be called and display the details under the drop down button. Please give me the logic with code. Its very urgent...please help me. Please note that it is in WDP Abap interactive forms. We are using NW2004S, ECC6.0.

    Hello,
    you have to use ZCI form to use DDLB in WD-ABA. The content of the DDLB has to be present at rendering time, there is no dinamic call when you click the "dropdown".
    The attribut you map to the DDLB has to be an element with a value-set, and the value set has to contain the text / value pairs.
    >> this will be displayed when you click the dropdown.
    Best regards,
    Dezso

Maybe you are looking for

  • Windows Vista with Windows 7 Upgrade on Boot Camp 4.0.1. Is it possible??

    Hello everyone, I own a genuine full installation Windows Vista and a genuine upgrade to Windows 7. I'd like to install these ( i.e. install Vista and then upgrade to 7) on a MacBookPro running on OSX Lion 10.7.2 with Boot Camp 4.0.1. Is It possible?

  • Mappings...

    Could you please list the situations where I might need to use Java, ABAP or XSLT mapping? Regards, Ashish

  • Why can't I download new apps?

    APp store asks for ID then goes into permanent waiting mode

  • Why can't I install quicktime!?

    When I try to download and install iTunes and quicktime. I get the error message: Could not access network location /lib/ext. It installs iTunes but not quicktime. I used to have quicktime on my computer. Please help! I really want to use my new ipho

  • Canon 5D Mark II Export Issues

    So, I shot some footage on the 5D and have edited them together. Every time I try to export the footage it always turns out choppy or lags. It's not as smooth as the original footage even though I set the export settings to 30 fps as is native to the