Anyone help me? i dunno what's this!!

i am writting code for a simple gui window based java application , and this is the main windows' script:
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
class MenuTest extends JFrame implements ActionListener{
int inc;
Customer customer[];
JMenu mnuAccount, mnuTransaction, mnuHelp;
JMenuItem withdrawalItem, depositItem, balanceItem, newAccountItem,exitItem;
JMenuBar bar;     
JPanel panel, p2, p3, p4;
JLabel JlFirstName, JlLastName,JlBalance, JlID, enqbalance, money, JlDeposit;
JTextField JtFFirstName, JtFLastName, JtFBalance, JtFID, JtFDeposit, JtFWithdraw;
JButton ok, ok2, ok3, ok4, cancel;
public MenuTest(){
     super("Banking Account");
     customer = new Customer [50];
     panel = new JPanel();
     p2 = new JPanel();
p3 = new JPanel();
     p4 = new JPanel();
panel.setVisible(false);     
     p2.setVisible(false);
     p3.setVisible(false);
     p4.setVisible(false);
     inc=0;
     JlFirstName = new JLabel("First Name ");     
     JlLastName = new JLabel("Last Name ");
     JlBalance = new JLabel("Balance ");
     JlID= new JLabel("ID");
enqbalance = new JLabel("");
     JlDeposit = new JLabel("");
     JtFFirstName = new JTextField(50);
     JtFLastName = new JTextField(50);
     JtFBalance = new JTextField(50);
     JtFDeposit = new JTextField(6);
JtFWithdraw = new JTextField(6);
     JtFID = new JTextField(4);
     ok = new JButton("OK");
     ok.addActionListener(this);
     ok2 = new JButton("OK");
     ok2.addActionListener(this);
     ok3 = new JButton("OK");
     ok3.addActionListener(this);
     ok4 = new JButton("Ok");
     ok4.addActionListener(this);     
     cancel = new JButton("Cancel");
     cancel.addActionListener(this);
mnuAccount = new JMenu("Account");
mnuTransaction = new JMenu("Transaction");
     mnuHelp = new JMenu("Help");
     //Set Shortcut key
     mnuAccount.setMnemonic('A');
     mnuTransaction.setMnemonic('T');
     mnuHelp.setMnemonic('H');     
     withdrawalItem = new JMenuItem("Withdrawal");
     depositItem = new JMenuItem("Deposit");
     balanceItem = new JMenuItem("Balance Inquiry");
     newAccountItem = new JMenuItem("New Account");
     exitItem = new JMenuItem("Exit");
//Register the item and menu
     exitItem.addActionListener(this);
     mnuAccount.add(newAccountItem);
     newAccountItem.addActionListener(this);
     mnuAccount.addSeparator();
     mnuAccount.add(exitItem);
     mnuTransaction.add(withdrawalItem);
     withdrawalItem.addActionListener(this);
     mnuTransaction.add(depositItem);
     depositItem.addActionListener(this);
     mnuTransaction.add(balanceItem);     
     balanceItem.addActionListener(this);
     bar = new JMenuBar();
bar.add(mnuAccount);
     bar.add(mnuTransaction);
     bar.add(mnuHelp);
     setJMenuBar(bar);
     setSize(400,400);
     setVisible(true);
public void actionPerformed(ActionEvent e) {
if (e.getSource() == exitItem) {
JOptionPane.showMessageDialog(null,"Press Close On Window Screen To Exit","Help",JOptionPane.PLAIN_MESSAGE);
//ADD NEW ACCOUNT     
else if (e.getSource() == newAccountItem){
     JtFID.setText("");     
panel.setLayout(new GridLayout(5,2));
panel.setSize(400, 400);
     getContentPane().add(panel);
     panel.setVisible(true);
     p2.setVisible(false);
     p3.setVisible(false);
     p4.setVisible(false);
     panel.add(JlFirstName );
     panel.add(JtFFirstName);
     panel.add(JlLastName);
     panel.add( JtFLastName);
     panel.add( JlBalance);
     panel.add( JtFBalance);
     panel.add( JlID);
     panel.add(JtFID);
     panel.add(ok);
     panel.add(cancel);
     panel.setVisible(true);
else if ((e.getSource() == ok) && (emptyID()==true))
     JOptionPane.showMessageDialog(null,"Empty 4-digit ID","Empty ID",JOptionPane.PLAIN_MESSAGE);     
else if ((e.getSource() == ok) && (emptyID()==false))
     Customer c= new Customer(JtFFirstName.getText(), JtFLastName.getText(), JtFID.getText());
     Account account = new Account(Double.parseDouble(JtFBalance.getText()));
     c.setAccount(account);
     customer[inc] = c;
     inc++;
     JOptionPane.showMessageDialog(null,"Add Successful","Adding Customer",JOptionPane.PLAIN_MESSAGE);     
else if (e.getSource() == cancel)
     JtFFirstName.setText("");
     JtFLastName.setText("");
     JtFBalance.setText("");
     JtFID.setText("");
//BALANCE ENQUIRY
else if (e.getSource() == balanceItem)
     JtFID.setText("");
     p2.setLayout(new GridLayout(3,3));
     getContentPane().add(p2);
     panel.setVisible(false);
     p2.add(JlID);
     p2.add(JtFID);
     p2.add(ok2);
     p2.add(enqbalance);
     p4.setVisible(false);
     p3.setVisible(false);
     p2.setVisible(true);
//if ok is press things will be processed     
else if ((e.getSource() == ok2) && (emptyID()==true))
     JOptionPane.showMessageDialog(null,"Empty 4-digit ID","Empty ID",JOptionPane.PLAIN_MESSAGE);     
else if ((e.getSource() == ok2) && (emptyID()==false))
     if(findID(Integer.parseInt(JtFID.getText()))== -1){JOptionPane.showMessageDialog(null,"No such person","Balance Enquiry",JOptionPane.PLAIN_MESSAGE);}
     else
int j = findID(Integer.parseInt(JtFID.getText()));
     enqbalance.setText("First Name=" + customer[j].getFirstName() + "Last Name = " + customer[j].getLastName() + "Balance = " +customer[j].getAccount().getBalance() );      
//DEPOSIT ITEM
else if (e.getSource() ==depositItem)
     JtFID.setText("");
     panel.setVisible(false);
     p2.setVisible(false);
     p4.setVisible(false);
     p3.add(JlID);
     p3.add(JtFID);
     JlDeposit.setText("Deposit amount");
     p3.add(JlDeposit);
     p3.add(JtFDeposit);
     p3.add(ok3);     
     p3.setLayout(new GridLayout(3,3));     
     getContentPane().add(p3);
     p3.setVisible(true);
else if ((e.getSource() == ok3) && (emptyID()==true))
     JOptionPane.showMessageDialog(null,"Empty 4-digit ID","Empty ID",JOptionPane.PLAIN_MESSAGE);     
else if ((e.getSource() == ok3) && (emptyID()==false))
     if(findID(Integer.parseInt(JtFID.getText()))== -1){JOptionPane.showMessageDialog(null,"No such person","Deposit",JOptionPane.PLAIN_MESSAGE);}
     else
     int j = findID(Integer.parseInt(JtFID.getText()));
customer[j].getAccount().deposit(Double.parseDouble(JtFDeposit.getText()));
     JOptionPane.showMessageDialog(null,"Deposit Successful","Deposit",JOptionPane.PLAIN_MESSAGE);     
//WITHDRAWAL
else if (e.getSource() == withdrawalItem)
     JtFID.setText("");
     panel.setVisible(false);
     p2.setVisible(false);
     p3.setVisible(false);
p4.setLayout(new GridLayout(3,3));
     p4.setSize(300,300);
     getContentPane().add(p4);
     p4.add(JlID);
     p4.add(JtFID);
     JlDeposit.setText("Withdrawal");
     p4.add(JlDeposit);
     p4.add(JtFWithdraw);
     p4.add(ok4);     
     p4.setVisible(true);
else if ((e.getSource() == ok4) && (emptyID()) )
     JOptionPane.showMessageDialog(null,"Empty 4-digit ID","Empty ID",JOptionPane.PLAIN_MESSAGE);     
else if( (e.getSource() == ok4) && (!emptyID()) )
     if(findID(Integer.parseInt(JtFID.getText()))== -1){JOptionPane.showMessageDialog(null,"No such person","Withdraw",JOptionPane.PLAIN_MESSAGE);}
     else
     int j = findID(Integer.parseInt(JtFID.getText()));      
customer[j].getAccount().withdraw(Double.parseDouble(JtFWithdraw.getText()));
     JOptionPane.showMessageDialog(null,"Withdrawal Successful","Withdrawal",JOptionPane.PLAIN_MESSAGE);          
public boolean emptyID()
{ if(JtFID.getText()=="")return true;
return false;
public int findID(int id)
for(int i=0; i <=inc; i++)
     if(customer.getID() == Integer.parseInt(JtFID.getText()) )
          return i;
return -1;     
public static void main(String args[]){
MenuTest app = new MenuTest();
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
when i compile the program and try one of the following:
1) not enter the customer ID and press enter in deposit/withdrawal, the error in the background DOS is like this:
java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.
java:48)
at java.lang.Integer.parseInt(Integer.java:489)
at java.lang.Integer.parseInt(Integer.java:518)
at MenuTest.actionPerformed(MenuTest.java:257)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
86)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
istener.java:245)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
read.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
java.lang.NullPointerException
at MenuTest.findID(MenuTest.java:274)
at MenuTest.actionPerformed(MenuTest.java:257)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
86)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
istener.java:245)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
read.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
java.lang.NullPointerException
at MenuTest.findID(MenuTest.java:274)
at MenuTest.actionPerformed(MenuTest.java:257)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
86)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
istener.java:245)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
read.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
anyboydy know how to solve this problem, further more, there's no dialog box pop up saying empty deposit/withdraw messages..please help me!

recently i 've updated my piece of code to handle the NumberFormatException like the below:
     try{       
          Customer2 j = findID(Integer.parseInt(JtFID.getText()));     
String info = "First Name: " + j.getFirstName() + "\nLast Name: " + j.getLastName() + "\nBalance: " +j.getAccount().getBalance() ;
     JOptionPane.showMessageDialog(null,info,"Customer Balance Enquiry",JOptionPane.PLAIN_MESSAGE);          
     enqbalance.setText("");                
catch (NumberFormatException info){JOptionPane.showMessageDialog(null,"No such person /Invalid Data Insertion, please try again!","Balance Enquiry",JOptionPane.PLAIN_MESSAGE);}
but there's still similar error stating me i've got this issue:
java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.
java:48)
this are the first few ling of error, how could this happened as i already add the exception handling purpose?

Similar Messages

  • Can anyone help me find out what caused this Kernel Panic?

    Wed Aug  6 13:45:10 2014
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0x0000000000008000, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000008000, CR3: 0x0000000170b3700f, CR4: 0x00000000001606e0
    RAX: 0xffffff801b6ea1c0, RBX: 0xffffff80142fb000, RCX: 0xffffff80185a9380, RDX: 0xffffff80142fb008
    RSP: 0xffffff80f1c4ba78, RBP: 0xffffff80f1c4bbb0, RSI: 0x00ffffff80130ee6, RDI: 0xffffff801b6ea1c0
    R8:  0x0000000000000000, R9:  0xffffff80142fb000, R10: 0xfffffe81d5fd9df8, R11: 0x000800000004783a
    R12: 0x0000000000000000, R13: 0xffffff80d26d0000, R14: 0x0000000000000000, R15: 0x0000000000000000
    RFL: 0x0000000000010286, RIP: 0x0000000000008000, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000000008000, Error code: 0x0000000000000010, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80f1c4b720 : 0xffffff8000220792
    0xffffff80f1c4b7a0 : 0xffffff80002c4794
    0xffffff80f1c4b950 : 0xffffff80002da55d
    0xffffff80f1c4b970 : 0x8000
    0xffffff80f1c4bbb0 : 0xffffff7f81ecc0e9
    0xffffff80f1c4bbc0 : 0xffffff7f81ea2b11
    0xffffff80f1c4bbd0 : 0xffffff7f81e77efe
    0xffffff80f1c4bc10 : 0xffffff7f81e746d4
    0xffffff80f1c4bc40 : 0xffffff7f81e74981
    0xffffff80f1c4bc60 : 0xffffff7f818a3062
    0xffffff80f1c4bc80 : 0xffffff7f818a3384
    0xffffff80f1c4bcb0 : 0xffffff7f81e934f1
    0xffffff80f1c4bce0 : 0xffffff7f81e769db
    0xffffff80f1c4bd30 : 0xffffff7f81e94307
    0xffffff80f1c4bd60 : 0xffffff7f81ed3f4b
    0xffffff80f1c4bd80 : 0xffffff7f81e91cea
    0xffffff80f1c4bda0 : 0xffffff7f81eb6540
    0xffffff80f1c4bdc0 : 0xffffff7f81e91d34
    0xffffff80f1c4bde0 : 0xffffff80006576fa
    0xffffff80f1c4be00 : 0xffffff800029dff5
    0xffffff80f1c4be20 : 0xffffff8000223096
    0xffffff80f1c4be50 : 0xffffff80002148a9
    0xffffff80f1c4beb0 : 0xffffff800021bbd8
    0xffffff80f1c4bf10 : 0xffffff80002af140
    0xffffff80f1c4bfb0 : 0xffffff80002dab5e
          Kernel Extensions in backtrace:
             com.apple.GeForce(7.3.2)[7E1D7726-416F-3716-ACCB-E1E276E35002]@0xffffff7f81e720 00->0xffffff7f81f34fff
                dependency: com.apple.NVDAResman(7.3.2)[97284661-2629-379E-B86B-D388618E8C30]@0xffffff7f809 27000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f80915000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f808b1000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f808dc000
             com.apple.iokit.IOSurface(80.0.2)[A0D7A21B-A872-3CBC-AD6F-F8CCCCF2C136]@0xfffff f7f8189f000->0xffffff7f818b0fff
    BSD process name corresponding to current thread: Google Chrome
    Mac OS version:
    11G63b
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro9,1 (Mac-4B7AC7E43945597E)
    System uptime in nanoseconds: 285764420775908
    last loaded kext at 157808233981217: com.apple.driver.AppleUSBCDC    4.1.22 (addr 0xffffff7f807fd000, size 16384)
    last unloaded kext at 157965577897484: com.apple.driver.AppleUSBCDC    4.1.22 (addr 0xffffff7f807fd000, size 12288)
    loaded kexts:
    com.avast.AvastFileShield    2.1.0
    com.avast.PacketForwarder    1.4
    com.symantec.kext.ips    3.9.1f10
    com.symantec.kext.internetSecurity    5.3f6
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AGPM    100.12.75
    com.apple.driver.X86PlatformShim    5.0.0d8
    com.apple.driver.AppleHDA    2.2.5a5
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMikeyDriver    2.2.5a5
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleIntelHD4000Graphics    7.3.2
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.GeForce    7.3.2
    com.apple.driver.AppleSMCPDRC    5.0.0d8
    com.apple.iokit.IOBluetoothSerialManager    4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.3
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AppleMuxControl    3.1.33
    com.apple.driver.ApplePolicyControl    3.1.33
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.AppleMCCSControl    1.0.33
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleIntelFramebufferCapri    7.3.2
    com.apple.driver.AppleUSBTCButtons    227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard    227.6
    com.apple.driver.AppleIRController    312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.1.0
    com.apple.driver.AppleFWOHCI    4.9.0
    com.apple.driver.AirPort.Brcm4331    561.7.22
    com.apple.driver.AppleSDXC    1.2.2
    com.apple.driver.AppleUSBHub    5.1.0
    com.apple.iokit.AppleBCM5701Ethernet    3.2.4b8
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleAHCIPort    2.3.1
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleUSBEHCI    5.1.0
    com.apple.driver.AppleUSBXHCI    1.1.0
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.4
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.driver.DspFuncLib    2.2.5a5
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.5
    com.apple.iokit.IOAudioFamily    1.8.6fc18
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.2.5a5
    com.apple.iokit.IOHDAFamily    2.2.5a5
    com.apple.driver.AppleGraphicsControl    3.1.33
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.nvidia.nvGK100hal    7.3.2
    com.apple.driver.X86PlatformPlugin    5.1.1d6
    com.apple.driver.AppleSMC    3.1.3d10
    com.apple.driver.IOPlatformPluginFamily    5.1.1d6
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.NVDAResman    7.3.2
    com.apple.iokit.IONDRVSupport    2.3.4
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOGraphicsFamily    2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.8f17
    com.apple.iokit.IOBluetoothFamily    4.0.8f17
    com.apple.driver.AppleUSBMultitouch    230.5
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.5
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBMergeNub    5.1.0
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.driver.AppleThunderboltNHI    1.6.0
    com.apple.iokit.IOThunderboltFamily    2.0.3
    com.apple.iokit.IOFireWireFamily    4.4.8
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    5.1.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.11
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4

    Uninstall both Avast and Symantec ..
    Uninstall Avast >  How to completely uninstall avast! Free Antivirus from a PC or Mac
    Avast has caused many Mac users problems as noted from the results of an ASC search here.
    Uninstall Symantec/Norton >  Download and run the Norton Removal Tool to uninstall your Norton product
    Excellent user tip >   Viruses, Trojans, Malware - and other aspects of Internet Security: Apple Support Communities
    Having one anti virus software installed is not necessary, two is overkill.
    If your Mac contintues to generate kernel panics after uninstalling Symantec and Avast, the uninstallers do not always delete all the associated files.
    Backup your important data then reformat the drive and reinstall OS X using OS X Recovery

  • Hi all of our devices is been compromise. Can anyone help let us know what to do

    Hi all of our devices is been compromise. Can anyone help let us know what to do

    Which devices are you talking about?
    How do you know the devices have been compromised.  Suggest you change all your passwords.
    Describe what problem you are experiencing.  This isn't Windows.
    At this time there is no known malware on an ios device.  Period.
    Robert

  • When I power up my Mac-Pro I only get  a flashing file folder with a ? inside the folder. I suspect my hard drive is maxed to capacity can anyone help me as to what I should do?

    When I power up my Mac-Pro I only get  a flashing file folder with a ? inside the folder. I suspect my hard drive is maxed to capacity can anyone help me as to what I should do?

    Whatever the problem is you no longer have a bootable system. You need to try reinstalling OS X.
    Reinstall Snow Leopard without erasing the drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • Can anyone help with Double Command issues. This a specific keyboard question and they do not seem to know.

    Before I go into a lengthy explanation of the problem: Can anyone help with Double Command issues. This a specific keyboard question and they do not seem to know.
    Thanks much.
    Emile

    Choose Force Quit from the Apple menu and close Mail from there.
    (103661)

  • I am not able to see the airplay icon with Maverick. Can anyone help on how to go about this?

    I am not able to see the airplay icon with Maverick. Can anyone help on how to go about this?

    Does restarting the router help?
    Best.

  • HT4623 im having problems with iphone 5 it keeps goin to recovery mode, i have the latest update already installed but it keeps goin to recovery every two day. can anyone help me on hoe to fix this issue? thanks

    im having problems with iphone 5 it keeps goin to recovery mode, i have the latest update already installed but it keeps goin to recovery every two day. can anyone help me on hoe to fix this issue? thanks

    Try to Restore with iTunes on your computer. If this does not work, there is full Warranty. Make Genius reservation or set up service and take or send to Apple for resolution.

  • TS1702 After installing IOS6 my iphone 4s continues to shut down on me after trying to use any app. Can anyone help me out with what to do? I've rebooted and backed up everything.

    After installing IOS 6 my Iphone 4s continues to shut down on me after trying to use any app. I've backed up and rebooted, nothing helps. Can anyone help??

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • My MacBook Air is stuck in iPhoto and won't let me log out it says its downloading pics to the library but it not - can anyone help me to escape out of this?

    My MacBook Air is stuck in iPhoto and won't let me log out it says it is downloading pics into the library but it is not - can anyone help me escape out of iPhoto?

    Apple menu ==> force quit
    Post back if you have trouble after quitting and rebooting your MBA
    LN

  • Can anyone help me figure out what this sighn means...?

    everytime i try to turn on my ipod the apple logo appears and then a battery with a exclemation mark in a litlle triangle appears, and once i got it on it won't play the songs, it just goes through them w/o playing it for a second. I can't figure it out. What should i do?

    So, what does the iPod show on the screen when you connect it to your power source?
    Have you tried resetting it while it's connected? To reset hold the MENU and SELECT (center) buttons until you see the Apple logo.

  • BT Desk Top Help Up-Date Message - What's this all...

    I have been getting a dialog box appear at the bottom of my display for the past few weeks stating that there is a Desk Top Help up-date available for my Home Hub - click to download up-date. etc.
    It's genuine enough as I can access it from my BT Broadband Desktop Help section of the main BT web page.
    My point is, as I have just tried again to download it, after 8% of the download it comes up with a dialog that tells me there are 'issues with BT downloading right now' and to try again, later.
    Well, I have 'tried again later' for the past three weeks, in the morning and in the evening and everytime it has stopped at the 8% stage.
    Anyone know what this is all about? 
    Anyone know what the up-date brings to the party?
    Anyone find Desk Top Help (DTH) is actually helpfull?  I ask this because every time it pops up telling me there is a problem with either my email accounts or my hub connection, and do I want DTH to assist me in fixing it, it runs through it's procedures but ends by telling me everything is ok and there is nothing wrong! I could have told it that before it started!!
    After a few weeks of having this come up when you are right in the middle of something, then being forced to wait whilst it 'does it's thing' only to find nothing was in-fact wrong, becomes extremely annoying.
    Do we actually need it?
    Any useful tips/points/advice/experiences would be appreciated.
    Thanks,

    Hi seawings
    I had posted a fix on a problem like this on a different thread and it should work for you too
    Have a look at my post here and see it it does the trick.
    With regards to how useful Desktop Help is, we have reports from literally thousands of customers each month that this fixs problems for them.  Maybe not everyones cup of tea but from what I see it works really well.
    Thx
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • HELP... WHAT DOES THIS MEAN?? Did I loose all my pictures??  The iPhoto Library is locked, on a locked disk, or you do not have permission to make changes to it.

    Everytime I click on my Iphoto icon this is what pops up
    The iPhoto Library is locked, on a locked disk, or you do not have permission to make changes to it.
    I can't get into my library.
    I thought I did a back up onto a TAB and I can't unlock it from there either... HELP!! I'm not computer savy enough to figure this out!!
    PLEASE PLEASE PLEASE... HELP ME!!
    I've gotten frustrated and I've cried and I'm hoping there is help out there!
    Thanks!

    re-post in the iPhoto forum where all the people that are very familiar with that software hang out.  You are much more likely to get a quicker answer there.  Good luck.

  • Help me to find whats causing this crash?

    Hello there!
    After I have update my Ableton Live app, it just keeps crashing
    wherever I try to launch.
    Can someone help me to find out in the crash report what plugin/lib
    is causing this error?
    Thanks!
    Process: Live [831]
    Path: /Applications/Live 8.1 OS X/Live.app/Contents/MacOS/Live
    Identifier: com.ableton.live
    Version: 8.1 (8.1)
    Code Type: X86 (Native)
    Parent Process: launchd [78]
    Interval Since Last Report: 1852 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 6 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-12-09 16:32:21.290 +0000
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: 2138FAB6-CED1-4714-8F68-9E2B3367FE57
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 8
    Thread 0:
    0 libSystem.B.dylib 0x96c2d286 machmsgtrap + 10
    1 libSystem.B.dylib 0x96c34a7c mach_msg + 72
    2 libSystem.B.dylib 0x96c71a85 threadpolicyset + 190
    3 ...lemony.MelodyneRewireDevice 0x15fc1a72 GNThread::setThreadPriority(int) + 100
    4 ...lemony.MelodyneRewireDevice 0x15fdfd08 GNMessagePort::registerMessagePortWithName(GNString*, GNData* ()(GNMessagePort, GNData*), int, int, GNDictionary*) + 304
    5 ...lemony.MelodyneRewireDevice 0x15f81dae GNReWire2AudioDeviceHost::create() + 172
    6 ...lemony.MelodyneRewireDevice 0x15f7ff0f RWDEFOpenDevice + 89
    7 ...opellerheads.rewire.library 0x15d3d84e 0x15d39000 + 18510
    8 ...opellerheads.rewire.library 0x15d3d9b8 0x15d39000 + 18872
    9 ...opellerheads.rewire.library 0x15d408e0 RWPUnregisterDeviceImp + 5438
    10 ...opellerheads.rewire.library 0x15d3e689 RWM2OpenDeviceImp + 57
    11 com.ableton.live 0x00e50d6f AReWireAudioInUnit::~AReWireAudioInUnit() + 4889
    12 com.ableton.live 0x00e4c301 std::rangeerror::~rangeerror() + 16113
    13 com.ableton.live 0x00e52278 AReWireAudioInUnit::~AReWireAudioInUnit() + 10274
    14 com.ableton.live 0x0120ca35 AGroupDeviceBranch::~AGroupDeviceBranch() + 18749
    15 com.ableton.live 0x0120cf6f AGroupDeviceBranch::~AGroupDeviceBranch() + 20087
    16 com.ableton.live 0x0111b9c3 AAbstractGroove::~AAbstractGroove() + 23675
    17 com.ableton.live 0x0164303f AChooserBarDefault::~AChooserBarDefault() + 72541
    18 com.ableton.live 0x01643591 AChooserBarDefault::~AChooserBarDefault() + 73903
    19 com.ableton.live 0x0148dff5 ABigBrotherView::~ABigBrotherView() + 21645
    20 com.ableton.live 0x014954d4 ABigBrotherView::~ABigBrotherView() + 51564
    21 com.ableton.live 0x0163b7d3 AChooserBarDefault::~AChooserBarDefault() + 41713
    22 com.ableton.live 0x016481c5 AChooserBarDefault::~AChooserBarDefault() + 93411
    23 com.ableton.live 0x01439577 ALetter::~ALetter() + 6785
    24 com.ableton.live 0x014398ee ALetter::~ALetter() + 7672
    25 com.ableton.live 0x01449cf7 AApplication::~AApplication() + 55527
    26 com.apple.Foundation 0x9193752c nsnotecallback + 364
    27 com.apple.CoreFoundation 0x9685547a __CFXNotificationPost + 362
    28 com.apple.CoreFoundation 0x96855753 _CFXNotificationPostNotification + 179
    29 com.apple.Foundation 0x91934680 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    30 com.apple.Foundation 0x9193ded8 -[NSNotificationCenter postNotificationName:object:] + 56
    31 com.apple.AppKit 0x952c0df2 -[NSApplication _postDidFinishNotification] + 125
    32 com.apple.AppKit 0x952c0d01 -[NSApplication _sendFinishLaunchingNotification] + 77
    33 com.apple.AppKit 0x9523a81b -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 284
    34 com.apple.AppKit 0x9523a014 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 98
    35 com.apple.Foundation 0x9195ca9f -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 655
    36 com.apple.Foundation 0x9195c7af _NSAppleEventManagerGenericHandler + 223
    37 com.apple.AE 0x90141648 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 144
    38 com.apple.AE 0x9014157e dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    39 com.apple.AE 0x90141425 aeProcessAppleEvent + 177
    40 com.apple.HIToolbox 0x94a85981 AEProcessAppleEvent + 38
    41 com.apple.AppKit 0x952378e9 _DPSNextEvent + 1189
    42 com.apple.AppKit 0x95236f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    43 com.apple.AppKit 0x9522ff9f -[NSApplication run] + 795
    44 com.ableton.live 0x01441a32 AApplication::~AApplication() + 22050
    45 com.ableton.live 0x01438b93 ALetter::~ALetter() + 4253
    46 com.ableton.live 0x00002a02 0x1000 + 6658
    47 com.ableton.live 0x00002929 0x1000 + 6441
    Thread 1:
    0 libSystem.B.dylib 0x96c2d2c2 semaphorewaittrap + 10
    1 com.ableton.live 0x00398ae8 OAudioMeterProcess::~OAudioMeterProcess() + 57730
    2 com.ableton.live 0x00434c1d AAbletonRpcService::~AAbletonRpcService() + 3079
    3 com.ableton.live 0x00434c41 AAbletonRpcService::~AAbletonRpcService() + 3115
    4 com.ableton.live 0x00390a47 OAudioMeterProcess::~OAudioMeterProcess() + 24801
    5 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    6 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x96c2d286 machmsgtrap + 10
    1 libSystem.B.dylib 0x96c34a7c mach_msg + 72
    2 com.apple.audio.midi.CoreMIDI 0x0292ff0f XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3 com.apple.audio.midi.CoreMIDI 0x02922477 MIDIInPortThread::Run() + 111
    4 com.apple.audio.midi.CoreMIDI 0x0292607d XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x029309ee CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    7 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96c3446e _semwaitsignal + 10
    1 libSystem.B.dylib 0x96c5edcd pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x96342b32 glvmDoWork + 162
    3 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    4 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x96c2d2c2 semaphorewaittrap + 10
    1 com.ableton.live 0x00398ae8 OAudioMeterProcess::~OAudioMeterProcess() + 57730
    2 com.ableton.live 0x0003e4a3 OCallProcessor::~OCallProcessor() + 30723
    3 com.ableton.live 0x00390a47 OAudioMeterProcess::~OAudioMeterProcess() + 24801
    4 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    5 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x96c2d2c2 semaphorewaittrap + 10
    1 com.ableton.live 0x00398ae8 OAudioMeterProcess::~OAudioMeterProcess() + 57730
    2 com.ableton.live 0x002d89bb NMultiSamplePlayer::TMultiSamplePartUpdateMessage::~TMultiSamplePartUpdateMessa ge() + 28689
    3 com.ableton.live 0x00390a47 OAudioMeterProcess::~OAudioMeterProcess() + 24801
    4 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    5 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x96c2d286 machmsgtrap + 10
    1 libSystem.B.dylib 0x96c34a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x96873e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96874aa8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x96db15f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x96db1480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    7 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x96c2d3a6 machwaituntil + 10
    1 ...ple.CoreServices.CarbonCore 0x971f1913 MPDelayUntil + 39
    2 ...ple.CoreServices.CarbonCore 0x971f17a7 Delay + 104
    3 ...opellerheads.rewire.library 0x15d447e8 RWPUnregisterDeviceImp + 21574
    4 ...opellerheads.rewire.library 0x15d5fa5c RWPUnregisterDeviceImp + 132794
    5 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    6 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 8 Crashed:
    0 ??? 0000000000 0 + 0
    1 ...lemony.MelodyneRewireDevice 0x15fc18da GNThreadHandler(void*) + 94
    2 libSystem.B.dylib 0x96c5e155 pthreadstart + 321
    3 libSystem.B.dylib 0x96c5e012 thread_start + 34
    Thread 8 crashed with X86 Thread State (32-bit):
    eax: 0x15e02a10 ebx: 0x15fdf94c ecx: 0x15e02b84 edx: 0x15e02850
    edi: 0x15e02b80 esi: 0xb0438000 ebp: 0xb0437f38 esp: 0xb0437f0c
    ss: 0x0000001f efl: 0x00010202 eip: 0x00000000 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000

    I have no idea what 'Ableton Live' is, but the thread that's crashing clearly references MelodyneRewireDevice,. A search on Melodyne turns up a slew of issues.
    This one might be your solution.
    http://support.apple.com/kb/TA25071

  • Need help QUICKK!! what does this error mean?

    Invalid command line. Error : Invalid path.
    This happened after a dropped my teacher the program off of my disk onto the school server, and i dont have disk with me, what can I do to fix it?

    Because dropping your teacher is not the right path for life? =P
    Seriously look like you are executing a batch file that try to look for a file and/or directory that does not exists in its new environment.

  • Can anyone let me know ..what is this all about---urgent

    import java.io.InputStream;
    public class I
    public I()
    public static final synchronized String I(int i)
    int j = i & 0xff;255
    if(getResourceAsStream[j] != i)
    getResourceAsStream[j] = i;
    if(i < 0)
    i &= 0xffff;65535
    String s = (new String(FYFG, i, FYFG[i - 1] & 0xff)).intern();255
    getClass[j] = s;
    return getClass[j];
    static byte FYFG[];
    static String getClass[] = new String[256];
    static int getResourceAsStream[] = new int[256];
    static
    try
    InputStream inputstream = (new I()).getClass().getResourceAsStream("" + 'I' + '.' + 'g' + 'i' + 'f');
    if(inputstream != null)
    int i = inputstream.read() << 16 | inputstream.read() << 8 | inputstream.read();
    FYFG = new byte;
    int j = 0;
    byte byte0 = (byte)i;
    byte abyte0[] = FYFG;
    while(i != 0)
    int k = inputstream.read(abyte0, j, i);
    if(k == -1)
    break;
    i -= k;
    for(k += j; j < k; j++)
    abyte0[j] ^= byte0;
    inputstream.close();
    catch(Exception exception) { }

    If it is so urgent, this remark might come too late. I take the risk though.
    Analyze the code and tell me what u understand by thishttp://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal — in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

Maybe you are looking for

  • Photoshop CS4 and save as PDF

    Is there a way to make Photoshop CS4 save layers in a PDF that are accessible in Acrobat, InDesign, Illustrator? I had to do an ad layout for a weekly newspaper and when I saved it as a PDF from photoshop, it retained the layers as long as it was ope

  • I just installed Mach5. It's not listed in the Logic 7 instrument menu.

    It said installation was sucessful. I was then instructed to launch the Mach5 from inside Logic 7.1. When i check the menus in an instrument channel, it's simply not available. I can obviously see all the other AU instruments; just no Mach5. I instal

  • Page from Sample - Mobile Starters - jQuery Mobile with theme not working on mobile

    I created a new webpage - New - Page from Sample - Mobile Starters - Jquery Mobile with Theme and did not modify it. That does not work on an iPhone or Android. What am I missing? Is there an update to make the jquery mobilesite work? This is how it

  • HT1620 where do i find security key

    where do i find security key

  • Nokia X3 Software Updater

    I have a problem with Software Updater it says; Configuration error, I've tried the troubleshooting instructions with regards to configuration and I can't find a free port to use even with FreePort scanner. Can anybody help me on this one?