Urgent: need help with Scanner

Im sorry im kinda new, and i cant figure out how to scan a String including new lines, and stops scanning after reaching an empty line...
i think im supposed to use System.getParameter("line.seperator")
Thx a lot in advance, but ive really been stuck

Hi,
Did you try the java.util.Scanner class? Maybe you can use the hasNextLine() method in an outer loop and write an inner loop that tokenizes each line like this:
Scanner s1= new Scanner(inputString);
while(s1.hasNextLine()){
Scanner s2 = new Scanner(s1.nextLine());
if(!s2.hasNext())
break;
There is this forum http://forum.java.sun.com/forum.jspa?forumID=54
for people who are new to Java, try posting your question there.

Similar Messages

  • Urgently need help with this

    Hi!!
    I urgently need help with this:
    When I compile this in Flex Builder 3 it says: The element type 'mx:Application' must be terminated by the matching end-tag '</mx:Application>'.
    but I have this end tag in my file, but when I try to switch from source view to desgin view it says, that: >/mx:Script> expected to terminate element at line 71, this is right at the end of the .mxml file. I have actionscript(.as) file for scripting data.
    This is the mxml code to terminate apllication tag which I did as you can see:
    MXML code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#007200, #000200]" width="1024" height="768" applicationComplete="popolni_vse()">
    <mx:HTTPService id="bazaMME" url="lokalnabaza/baza_MME_svn.xml" showBusyCursor="true" resultFormat="e4x"/>
    <mx:Script source="dajzaj.as"/>
    <mx:states>
    <mx:State name="Galerije">
        <mx:SetProperty target="{panel1}" name="title" value="Galerije MME"/>
        <mx:SetProperty target="{panel2}" name="title" value="opis slik"/>
        <mx:SetProperty target="{panel3}" name="title" value="Opis Galerije"/>   
        <mx:AddChild relativeTo="{panel1}" position="lastChild">
        <mx:HorizontalList x="0" y="22" width="713.09863" height="157.39436" id="ListaslikGalerije"></mx:HorizontalList>
                </mx:AddChild>
                <mx:SetProperty target="{text1}" name="text" value="MME opisi galerij "/>
                <mx:AddChild relativeTo="{panel1}" position="lastChild">
                    <mx:Label x="217" y="346" text="labela za test" id="izbr"/>
                </mx:AddChild>
                <mx:SetProperty target="{label1}" name="text" value="26. November 2009@08:06"/>
                <mx:SetProperty target="{label1}" name="x" value="845"/>
                <mx:SetProperty target="{label1}" name="width" value="169"/>
                <mx:SetProperty target="{Gale}" name="text" value="plac za Galerije"/>
            </mx:State>
            <mx:State name="Projekti"/>
        </mx:states>
    <mx:MenuBar id="MMEMenu" labelField="@label" showRoot="true" fillAlphas="[1.0, 1.0]" fillColors="[#043D01, #000000]" color="#9EE499" x="8" y="24"
             itemClick="dajVsebino(event)" width="1006.1268" height="21.90141">
           <mx:XMLList id="MMEmenuModel">
                 <menuitem label="O nas">
                     <menuitem label="reference podjetja" name="refMME" type="check" groupName="one"/>
                     <menuitem label="reference direktor" name="refdir" type="check" groupName="one"/>
                  <menuitem label="Kontakt" name="podatMME" groupName="one" />
                  <menuitem label="Kje smo" name="lokaMME" type="check" groupName="one" />
                 </menuitem>           
                 <menuitem type="separator"/>
                 <menuitem label="Galerija">
                     <menuitem label="Slovenija" name="galSvn" type="check" groupName="one"/>
                     <menuitem label="Nemčija" name="galDeu" type="check" groupName="one" />
                 </menuitem>
                 <menuitem type="separator"/>
                 <menuitem label="projekti">
                     <menuitem label="Slovenija" name="projSvn" type="check" groupName="one"/>
                     <menuitem label="Nemčija" name="projDeu" type="check" groupName="one" />
                     <menuitem label="Madžarska" name="projHun" type="check" groupName="one"/>
                 </menuitem>
             </mx:XMLList>                       
             </mx:MenuBar>
        <mx:Label x="845" y="10" text="25. November 2009@08:21" color="#FFFFFF" width="169" height="18.02817" id="label1"/>
        <mx:Label x="746" y="10" text="zadnja posodobitev:" color="#FFFFFF"/>
        <mx:Panel x="9" y="57" width="743.02814" height="688.4507" layout="absolute" title="Plac za Vsebino" id="panel1">
            <mx:Text x="0" y="-0.1" text="MME vsebina" width="722.95776" height="648.4507" id="Gale"/>
        </mx:Panel>
        <mx:Label x="197.25" y="748.45" color="#FFFFFF" text="Copyright © 2009 MME d.o.o." fontSize="12" width="228.73239" height="20"/>
        <mx:Label x="463.35" y="748.45" text="izdelava spletnih strani: FACTUM d.o.o." color="#FBFDFD" fontSize="12" width="287.60565" height="20"/>
        <mx:Panel x="759" y="53" width="250" height="705.07043" layout="absolute" title="Plac za hitre novice" id="panel3">
            <mx:Text x="0" y="0" text="MME novice" width="230" height="665.07043" id="text1"/>
            <mx:Panel x="-10" y="325.35" width="250" height="336.61972" layout="absolute" title="začasna panela" color="#000203" themeColor="#4BA247" cornerRadius="10" backgroundColor="#4B9539" id="panel2">
                <mx:Label x="145" y="53" text="vrednost" id="spremmen"/>
                <mx:Label x="125" y="78" text="Label"/>
                <mx:Label x="125" y="103" text="Label"/>
                <mx:Label x="0" y="53" text="spremenljivka iz Menuja:"/>
                <mx:Label x="45" y="78" text="Label"/>
                <mx:Label x="45" y="103" text="Label"/>
            </mx:Panel>
        </mx:Panel>
        <mx:Label x="9.9" y="10" text="plac za naslov MME vsebine" id="MMEnaslov" color="#040000"/>
         </mx:states></mx:Application>

    I know it's been a while but… did you fix this?
    It looks to me like you are terminating the <mx:Application> tag at the top. The opening tag should end like this: resultFormat="e4x">, not resultFormat="e4x"/> (Remove the /).
    Carlos

  • Urgent-Need help with code for Master data enhancement

    hi Experts,
    I have appended YMFRGR field(Table MARC) to 0MAT_PLANT_ATTR datasource.
    The key fields in the MARC table are MATNR and WERKS.Can anybody help with the user exit to populate this field,as am pretty new to ABAP.
    Thanks in advance

    Hi,
    go through this link which has the similar problem:
    https://forums.sdn.sap.com/click.jspa?searchID=1331543&messageID=2794783
    hope it helps.
    Thanks,
    Amith

  • Urgent - Need help with Lighting Effects Filter

    Hi,
    I need urgent help on something regarding the Lighting Effects filter in Adobe Photoshop CS5. I need lighting effect urgently to complete a project.
    I am using Photoshop CS5 on a Windows Vista computer in 64-bit mode.
    On the net it is given that you can run photoshop CS5 in 32-bit mode to use the lighting effects filter - both on Mac and PC.
    My Problem:
    While on the net it is given how to change from 64-bit to 32-bit and vice-versa, I have my Photoshop CS5 installed on 'E - Drive' and not on 'C - Drive' due to lack of space. I have followed all the instructions on how to open it in 32-bit mode on the net, but I still cannot use the lighting effects plugin.
    What I need is if someone could give simple and clear instructions on how to open Photoshop CS5 32-bit version instead of opening the default 64-bit version on Windows Vista - that would be great.
    Looking forward to answers.
    Thanks.

    That advice about running the 32 bit version of cs5 for the Render> Lighting Effects filter
    only pertains to the mac version of photoshop cs5.
    The lighting effects filter does work in the 64 bit version of photoshop cs5 on windows, your
    document just has to be 8 bits/channel and in the RGB Color mode (Image>Mode) same
    for using the lighting effects filter in the 32 bit version of cs5.
    Added: In general it's frowned upon installing photoshop on drives other than C drive.
    MTSTUNER
    Message was edited by: MTSTUNER

  • Urgent - need help with ring gradient

    Does anyone know how do I apply spectrum gradient to this circle as on pic (its a dry brush stroke that comes with illustrator)
    Please help, i tried everything

    this is in CS5. in CS6 and above you can make life much easier by using a gradient along a stroked circle.
    these are your ingredients: circle with the appropriate brush and a line with a stroke.
    rotate the line about one end however many steps you need for each colour (rotate tool, alt-click on the bottom of the path, use smart guides to pinpoint it).
    change each path to your colours. make a copy of the first colour (orange here) and paste in front (ctrl+F).
    select all the lines. make a blend (ctrl + alt + B).
    select the brushed circle. expand appearance (object > expand appearance). this particular one was a group, and we want a compound path, so I ungrouped it and made a compound path (ctrl + 8). position it over your colour wheel. make sure its in front.
    select both and make a clipping path (ctrl + 7).

  • URGENTLY NEED HELP WITH NESTED REPEAT REGION

    Im using dreamweaver to deevelop a page that displays questions in ann assessment to the user. First of all the page shows the assessment name to the user and then it gets some information about the questions in the assessment from the table called Item. It gets the Question_ID and then there is a repeat region which uses the Question_ID to display the questions in the assessment. There is a nested repeat region inside this which displays the possible answers the user can respond to the question with It gets this information from a table called outcome. The page should display each question and then all the possible answers but i am having problems and im not sure wether i am doing this in the correct way. What is wrong with my code? PLEASE HELP! can someone tell me what is going wrong and how i can fix this problem thamks.
    here is my code.
    Driver DriverassessmentRecordset = (Driver)Class.forName(MM_connAssessment_DRIVER).newInstance();
    Connection ConnassessmentRecordset = DriverManager.getConnection(MM_connAssessment_STRING,MM_connAssessment_USERNAME,MM_connAssessment_PASSWORD);
    PreparedStatement StatementassessmentRecordset = ConnassessmentRecordset.prepareStatement("SELECT Assessment_ID, Assessment_Name, Time_Limit, Display_Random, Record_Answers FROM Assessment.assessment WHERE Assessment_ID = '" + session.getValue("AssessmentID") + "' ");
    ResultSet assessmentRecordset = StatementassessmentRecordset.executeQuery();
    boolean assessmentRecordset_isEmpty = !assessmentRecordset.next();
    boolean assessmentRecordset_hasData = !assessmentRecordset_isEmpty;
    Object assessmentRecordset_data;
    int assessmentRecordset_numRows = 0;
    %>
    <%
    Driver DriveritemRecordset = (Driver)Class.forName(MM_connAssessment_DRIVER).newInstance();
    Connection ConnitemRecordset = DriverManager.getConnection(MM_connAssessment_STRING,MM_connAssessment_USERNAME,MM_connAssessment_PASSWORD);
    PreparedStatement StatementitemRecordset = ConnitemRecordset.prepareStatement("SELECT Question_ID, Assessment_ID FROM Assessment.item WHERE Assessment_ID = '" + session.getValue("AssessmentID") + "' ");
    ResultSet itemRecordset = StatementitemRecordset.executeQuery();
    boolean itemRecordset_isEmpty = !itemRecordset.next();
    boolean itemRecordset_hasData = !itemRecordset_isEmpty;
    Object itemRecordset_data;
    int itemRecordset_numRows = 0;
    %>
    <%
    Driver DriverquestionRecordset = (Driver)Class.forName(MM_connAnswer_DRIVER).newInstance();
    Connection ConnquestionRecordset = DriverManager.getConnection(MM_connAnswer_STRING,MM_connAnswer_USERNAME,MM_connAnswer_PASSWORD);
    //PreparedStatement StatementquestionRecordset = ConnquestionRecordset.prepareStatement("SELECT Question_Type, Number_Outcomes, Question_Wording FROM Answer.question WHERE Question_ID = '" + (((itemRecordset_data = itemRecordset.getObject("Question_ID"))==null || itemRecordset.wasNull())?"":itemRecordset_data) +"' ");
    //ResultSet questionRecordset = StatementquestionRecordset.executeQuery();
    %>
    <%
    Driver DriveroutcomeRecordset = (Driver)Class.forName(MM_connAnswer_DRIVER).newInstance();
    Connection ConnoutcomeRecordset = DriverManager.getConnection(MM_connAnswer_STRING,MM_connAnswer_USERNAME,MM_connAnswer_PASSWORD);
    PreparedStatement StatementoutcomeRecordset = ConnoutcomeRecordset.prepareStatement("SELECT Outcome_Number, Outcome_Text, Score, Feedback FROM Answer.outcome WHERE Question_ID = '" +itemRecordset.getObject("Question_ID")+ "' ");
                     ResultSet outcomeRecordset = StatementoutcomeRecordset.executeQuery();
                     boolean outcomeRecordset_isEmpty = !outcomeRecordset.next();
                    boolean outcomeRecordset_hasData = !outcomeRecordset_isEmpty;Object outcomeRecordset_data;
                  int outcomeRecordset_numRows = 0;
    %>
    <%
    int Repeat1__numRows = -1;
    int Repeat1__index = 0;
    itemRecordset_numRows += Repeat1__numRows;
    %>
    <%
    int Repeat2__numRows = -1;
    int Repeat2__index = 0;
    assessmentRecordset_numRows += Repeat2__numRows;
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/assessment.dwt.jsp" codeOutsideHTMLIsLocked="false" -->
    <head>
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Assessment</title>
    <!-- InstanceEndEditable -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <link href="../css/style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <table width="1000" border="0" cellpadding="0" cellspacing="0">
      <!--DWLayoutTable-->
      <tr>
        <td height="190"><img src="../img/assessment_login.png" alt="" name="navigation" width="1000" height="190" border="0" id="navigation" /></td>
      </tr>
      <tr>
        <td height="19"><!--DWLayoutEmptyCell--> </td>
      </tr>
      <tr>
        <td height="19"><!-- InstanceBeginEditable name="main" -->
        <table>
          <tr>
            <td width="990">Assessment Name:<%=(((assessmentRecordset_data = assessmentRecordset.getObject("Assessment_Name"))==null || assessmentRecordset.wasNull())?"":assessmentRecordset_data)%> </td>
            </tr>
          <tr>
            <td><% int count = 1; %> </td>
          </tr>
          <tr>
            <td valign="top"><table>
                <% while ((itemRecordset_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
                  <td width="21"> 
                     </td>
                  <td width="86">Question:<%= count %></td>
                </tr>
                <tr>
                  <td></td>
                  <td>
                     <% 
                     PreparedStatement StatementquestionRecordset = ConnquestionRecordset.prepareStatement("SELECT Question_Type, Number_Outcomes, Question_Wording FROM Answer.question WHERE Question_ID = '" +itemRecordset.getObject("Question_ID")+"' ");
                     ResultSet questionRecordset = StatementquestionRecordset.executeQuery();
                  boolean questionRecordset_isEmpty = !questionRecordset.next();
                  boolean questionRecordset_hasData = !questionRecordset_isEmpty;
                  Object questionRecordset_data;
                  int questionRecordset_numRows = 0;
                     %> <%= questionRecordset.getObject("Question_Wording") %></td>
                </tr>
                <tr>
                  <td></td>
                  <td>
                     </td>
                </tr>
                <tr>
                  <td></td>
                  <td> 
                    <table>
                      <% while ((outcomeRecordset_hasData)&&(Repeat2__numRows-- != 0)) {%>
                      <tr>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Outcome_Number"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Outcome_Text"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Score"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Feedback"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Question_ID"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                      </tr>
                      <%
      Repeat2__index++;
      outcomeRecordset_hasData = outcomeRecordset.next();
    %>
                    </table>
                    <table>
                      <tr> </tr>
                      <tr> </tr>
                    </table></td>
                </tr>
                <%
      Repeat1__index++;
      itemRecordset_hasData = itemRecordset.next();
      count++;
    //questionRecordset.close();
    //StatementquestionRecordset.close();
    //ConnquestionRecordset.close();
    %>
    Here is the exception i am gettingorg.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 115 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java:220: cannot find symbol
    symbol : variable outcomeRecordsetRecordset_data
    location: class org.apache.jsp.delivery.session_jsp
    out.print((((outcomeRecordset_data = outcomeRecordset.getObject("Outcome_Number"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data));
    ^
    An error occurred at line: 116 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java:223: cannot find symbol
    symbol : variable outcomeRecordsetRecordset_data
    location: class org.apache.jsp.delivery.session_jsp
    out.print((((outcomeRecordset_data = outcomeRecordset.getObject("Outcome_Text"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data));
    ^
    An error occurred at line: 117 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java:226: cannot find symbol
    symbol : variable outcomeRecordsetRecordset_data
    location: class org.apache.jsp.delivery.session_jsp
    out.print((((outcomeRecordset_data = outcomeRecordset.getObject("Score"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data));
    ^
    An error occurred at line: 118 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java:229: cannot find symbol
    symbol : variable outcomeRecordsetRecordset_data
    location: class org.apache.jsp.delivery.session_jsp
    out.print((((outcomeRecordset_data = outcomeRecordset.getObject("Feedback"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data));
    ^
    An error occurred at line: 119 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java:232: cannot find symbol
    symbol : variable outcomeRecordsetRecordset_data
    location: class org.apache.jsp.delivery.session_jsp
    out.print((((outcomeRecordset_data = outcomeRecordset.getObject("Question_ID"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data));
    ^
    An error occurred at line: 119 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    Note: C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java uses or overrides a deprecated API.
    An error occurred at line: 119 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    Note: Recompile with -Xlint:deprecation for details.
    An error occurred at line: 119 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    Note: C:\Servers\Tomcat 5.0\work\Catalina\localhost\assessment\org\apache\jsp\delivery\session_jsp.java uses unchecked or unsafe operations.
    An error occurred at line: 119 in the jsp file: /delivery/session.jsp
    Generated servlet error:
    Note: Recompile with -Xlint:unchecked for details.
    5 errors
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)     org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:332)
    org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:412)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

    Hi,
    Dont have much time to go through your code, but apparently i can see the error is becoz of the following reason.
    In the following code, you have used "outcomeRecordset_data ", but its not declared. You need to declare the variable first before you can use it.
    <% while ((outcomeRecordset_hasData)&&(Repeat2__numRows-- != 0)) {%>
                      <tr>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Outcome_Number"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Outcome_Text"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Score"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Feedback"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                        <td><%=(((outcomeRecordset_data = outcomeRecordset.getObject("Question_ID"))==null || outcomeRecordset.wasNull())?"":outcomeRecordsetRecordset_data)%></td>
                      </tr>
                      <%
      Repeat2__index++;
      outcomeRecordset_hasData = outcomeRecordset.next();
    %>Try declaring the "outcomeRecordset_data " on top as an object
    Hope it helps

  • Need help with scanner/printer

    I'm having trouble with my scanner. I only started having problems yesterday. When I came to this website it told me to use HP print scan dr. But I ran it, and it told me to go back to HP customer care. I've tried uninstalling it and reinstalling it. Nothing works. I don't know what I did to it. 

    Hey @bluepen ,
    Thank you for joining us on the HP Forums today, hope you enjoy your time with us!
    I understand you are having trouble with your scanner.
    So that I can better assist you I need to know a few things first;
    1. What Operating System are you using? Press the link to find out, in case you don't know already. http://whatsmyos.com/
    2. What printer are you using?
    3. How is the printer connected to the computer?
    Do you have the printer connected directly to a wall outlet or is it in a surge protector or power bar? Even if you have been using a surge protector/power bar all this time and you feel it is not the cause, please connect it to a wall outlet just so we can eliminate the power source as the root cause. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector
    In this document you will see, ISSUE: Problems or issues may arise when an HP LaserJet series printer is connected to an uninterruptible power supply (UPS), a power strip, or a surge protector
    ^ This is not limited to Laserjet printers.
    Look forward to hearing back from you.
    I worked for HP.

  • URGENT Need Help with Login - "Skype can't connect"

    Hello, I've been trying to log into Skype for the past 2 hours and it just keeps coming up with an error message, "Skype can't connect". It does not provide any other information on how to fix the issue. I use Skype for work and it is not too helpfuly right now that it is not working. PLEASE HELP! Thank you so much!

    Kevazy wrote:
    Ruwim, could you please read my message I have sent you? Regards,KevazyTry to reset all Skype settings. Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old. Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder. Restart Skype. N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • Urgent: Need Help with Substring/Instring

    I am taking a user input P_User_Name.
    P_User_Name is firstname/middlename/lastname
    Some examples:
    'James/Earl/Jones'
    '//Madonna'
    'Alec//Baldwin'
    Can someone tell me the code in PL/SQL to extract first name, middlename, lastname for a given P_User_Name.
    I would really appreciate your help.
    Thanks
    Home722

    Duplicate/triplicate posting... pathetic!!
    Urgent: SQL Gurus: Please Help
    Substring

  • Urgently need help with webservices

    I really really need to get a simple webservice working But all I'm getting is errors I have a second post describing my problems I'd be forever gratefully if someone would help!
    cumminsD

    Can any body see why this won't work ???
    ME ~]$ setenv CLASSPATH $AXIS_HOME
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/axis.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/commons-logging.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/jaxrpc.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/log4j-1.2.4.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/commons-discovery.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/wsdl4j.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/xerces.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/saaj.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$AXIS_LIB/axis-ant.jar
    [ME ~]$ setenv CLASSPATH "$CLASSPATH":$WEBSERVICES_HOME/junit3.8.1/junit.jar
    [ME ~]$ echo $CLASSPATH
    foo/axis-1_1RC2:foo/axis-1_1RC2/lib/axis.jar:foo/axis-1_1RC2/lib/commons-logging.jar:foo/axis-1_1RC2/lib/jaxrpc.jar:foo/axis-1_1RC2/lib/log4j-1.2.4.jar:foo/axis-1_1RC2/lib/commons-discovery.jar:foo/axis-1_1RC2/lib/wsdl4j.jar:foo/axis-1_1RC2/lib/xerces.jar:foo/axis-1_1RC2/lib/saaj.jar:foo/axis-1_1RC2/lib/axis-ant.jar:foo/junit3.8.1/junit.jar
    [ME ~]$
    [ME ~]$ cd $AXIS_HOME
    [ME axis-1_1RC2]$ java samples.userguide.example2.CalcClient -p8080 add 2 5
    Exception in thread "main" java.lang.NoClassDefFoundError: samples/userguide/example2/CalcClient
    [ME axis-1_1RC2]$
    [ME axis-1_1RC2]$ ls -l
    total 28
    drwxr-xr-x 5 ME ME 4096 mar 5 21:07 docs
    drwxr-xr-x 5 ME ME 4096 mai 27 14:52 lib
    -rw-r--r-- 1 ME ME 502 mar 5 21:07 README
    -rw-r--r-- 1 ME ME 3095 mar 5 21:07 release-notes.html
    drwxr-xr-x 19 ME ME 4096 avr 29 15:46 samples
    drwxr-xr-x 3 ME ME 4096 mar 5 21:07 webapps
    drwxr-xr-x 2 ME ME 4096 mar 5 21:07 xmls
    [ME axis-1_1RC2]$ cd ..
    [ME ~/foo]$ cd ..
    [ME ~]$ cd $WEBSERVICES
    WEBSERVICES: Undefined variable.
    [ME ~]$ cd $WEBSERVICES_HOME
    [ME ~/foo]$ ls -l
    total 142236
    drwxr-xr-x 7 cummins cummins 4096 mar 5 21:07 axis-1_1RC2
    -rw-rw-r-- 1 cummins cummins 34652160 avr 25 18:35 axis-1_1rc2.tar
    -rwxrwxr-x 1 cummins cummins 26532079 avr 24 16:06 j2sdk-1_3_1_07-linux-i586.bin
    drwxr-xrwx 12 cummins cummins 4096 avr 24 15:00 jakarta-tomcat-4.0.6
    -rw-rw-r-- 1 cummins cummins 20736000 avr 24 11:48 jakarta-tomcat-4.0.6.tar
    drwxr-xr-x 9 cummins cummins 4096 d�c 6 20:53 jdk1.3.1_07
    drwxrwxr-x 5 cummins cummins 4096 sep 4 2002 junit3.8.1
    -rw-rw-r-- 1 cummins cummins 441665 mai 9 12:34 junit3.8.1.zip
    -rw-rw-r-- 1 cummins cummins 35824515 avr 29 12:34 jwsdp-1_1-unix.sh
    drwxr-xr-x 13 cummins cummins 4096 avr 28 04:01 mod_perl-1.99_09
    -rw-rw-r-- 1 cummins cummins 3092480 mai 2 17:52 mod_perl-2.0-current.tar
    drwxr-xr-x 3 cummins cummins 4096 mai 9 16:59 myjavafiles
    drwxr-xr-x 5 cummins cummins 4096 mai 9 11:55 xerces-1_4_4
    -rw-rw-r-- 1 cummins cummins 24156160 mai 9 10:44 Xerces-J-bin.1.4.4.tar
    [cummins@pclx11 ~/foo]$ cd $AXIS_LIB
    foo/axis-1_1RC2/lib: No such file or directory.
    [cummins@pclx11 ~/foo]$ cd ..
    [cummins@pclx11 ~]$ cd $AXIS_LIB
    [cummins@pclx11 lib]$ ls -l
    total 4224
    -rw-r--r-- 1 cummins cummins 384889 mar 5 21:07 axis-ant.jar
    -rw-r--r-- 1 cummins cummins 1224774 mar 5 21:07 axis.jar
    -rw-r--r-- 1 cummins cummins 67334 mar 5 21:07 commons-discovery.jar
    -rw-r--r-- 1 cummins cummins 26388 mar 5 21:07 commons-logging.jar
    drwxrwxr-x 2 cummins cummins 4096 mai 27 14:51 data
    drwxrwxr-x 3 cummins cummins 4096 mai 27 14:51 docs
    -rw-r--r-- 1 cummins cummins 35658 mar 5 21:07 jaxrpc.jar
    -rw-r--r-- 1 cummins cummins 2693 nov 15 2001 LICENSE
    -rw-r--r-- 1 cummins cummins 378778 mar 5 21:07 log4j-1.2.4.jar
    -rw-r--r-- 1 cummins cummins 478 nov 15 2001 Readme.html
    -rw-r--r-- 1 cummins cummins 18402 mar 5 21:07 saaj.jar
    drwxrwxr-x 6 cummins cummins 4096 mai 27 14:52 samples
    -rw-r--r-- 1 cummins cummins 113178 mar 5 21:07 wsdl4j.jar
    -rw-r--r-- 1 cummins cummins 1812019 nov 15 2001 xerces.jar
    -rw-r--r-- 1 cummins cummins 193032 nov 15 2001 xercesSamples.jar
    [ME lib]$
    [ME ~]$ cd $AXIS_HOME
    [ME axis-1_1RC2]$ cd samples/userguide/example2
    [me example2]$ ls -l
    total 20
    -rw-rw-r-- 1 cummins cummins 1534 mai 22 16:50 CalcC.java
    -rw-r--r-- 1 cummins cummins 2484 mar 5 21:07 CalcClient.class
    -rw-r--r-- 1 cummins cummins 4202 mar 5 21:07 CalcClient.java
    -rw-r--r-- 1 cummins cummins 2797 mar 5 21:07 Calculator.java

  • URGENT *** Need help with SPEL

    Does anyone have sample code of assigning SPEL attributes in both Process Request and Process Forms Request.

    SPEL is adaption of EL in jsp/servelets in OA Framework. Its basically expression langauge so, you can't update it in process or process form request directly. SPEL in OAF is used attcah any UIX bean property like render,read only etc to a attribute in a View object. Hence if you need to update SPEL, update the VO attribute programatically in process or process form request.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Re: GT72 2QD Urgently need helps with freezing

    Same here, have the same problem with my new GT72 currently on windows 8.1.
    The freezes happen randomly and the system reboots eventually after some time.
    Happened for me on:
    * Ubuntu 14.04.5 LTS
    * Ubuntu 14.04.5 LTS (vanilla 4.13 kernel)
    * Windows 8.1...

    Have you tried updating the BIOS?
    http://www.msi.com/support/nb/GS70-2QE-Stealth-Pro-4.html#down-bios
    And also the EC?
    http://www.msi.com/support/nb/GS70-2QE-Stealth-Pro-4.html#down-firmware
    Have you also installed all drivers for your system?
    http://w...

  • Urgent-Need help with the code.

    Hi gurus,
    I am trying to write a code where i am populating the ZZorg1,ZZorg2 and ZZorg3 in VBRP tableto 2LIS_13_VDITM.
    WHEN '2LIS_13_VDITM'.
    DATA: X_T_DATA Like MC13VD0ITM.
       Loop at C_T_DATA into X_T_DATA.
          Select Single ZZSORG1 into X_T_DATA-ZZSORG1
                        ZZSORG2 into X_T_DATA-ZZSORG2
                        ZZSORG3 into X_T_DATA-ZZSORG3
          FROM VBRP
          WHERE VBELN = X_T_DATA-VBELN
          AND   POSNR = X_T_DATA-POSNR.
        MODIFY C_T_DATA from X_T_DATA.
        ENDLOOP.
    I am getting the following error when running a error check.
    "ZZSORG2 INTO X_T_DATA-ZZSORG2" is not expected.Can anybody let me know what i am doing wrong as i new to ABAP.          
    Thanks in advance
    Resolved it,thanks
    Message was edited by:
            sap novice

    Resolved it

  • Urgent , need help with fax format

    does anyone know how to convert a file into fax format? I try Rfax http://www.java4less.com/java_fax.htm , it can convert awt.image into a standard fax format, but our solution require a file to be coverted... if anyone know how to do this please give me some advices. thanks.

    Make your file into an awt.image then use what you already know works.

  • URGENT - need help with ansi/iso outer joins

    Hi,
    I am currently preparing for the OCP sql exam for the 9i developer track and I think a statement is printed wrong in my study book, please could somebody confirm the following:-
    Oracle Outer Join syntax
    from tab_a, tab_b
    where a.col_1 (+) = b.col_1
    ANSI/ISO Equivalent
    from tab_a a left outer join tab_b b
    on a.col_1 = b.col_1
    Should n't the above be a right outer join
    Please could somebody confirm or explain if I am wrong.
    Thanks in anticipation.
    Simon
    Note. The book is OCP Introduction to 9i sql (1Z0-007) page 115 (table 3-1) - author Jason Couchman

    It seems so....
    See
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_103a.htm#2107297

Maybe you are looking for

  • Adust feature not working follow up Question/ lost album folders!

    I tried trashing my iphoto plist from preferences and now have lost all my album folders which have very important projects sets I'm working on. I didn't empty the trash so I still have the folder but putting it back didn't seem to work. Is there a w

  • Restore Mail from Time Machine backup

    Hi, I have a time machine backup from my MacBook which unfortunately crashed and is now resting in Mac heaven. The problem now is that I just bought a new iMac and so wanted to get my mail settings and messages to my new computer without getting all

  • Bex Selection screen dont show up

    Dear Guru's We have recently upgraded from 3.1 to 7.0 and now we are facing a problem. In our Test (Quality) System, i have created a Query and when i run this Query in BEx analyzer i can see the Selection screen. Now i created a  new user which is a

  • My address book application will not allow me to open it.

    My icon is blue rather than tan. I cannot delete or change any addresses in the address book.

  • Applet does not load with jre6

    Hi, I am getting following exception when I try to load an applet after installing jre6 in my machine. Applet works fine when I remove Jre6 and continue with earlier version of 1.4.2. My company's firewall does not create any issue when the version i