Questions on StringTokenizer, trim(), and parsing.

im doing an assignment that requires parsing and havent had that much practice with parsing regular text from a file, ive been doing mostly parsing from a html. my question is if im parsing a line and i need 2 different types of information from it, should i just tokenize it twice or do it all at once, assuming the text format is always the same. for example
String input= "this is a test[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]";if parsed correctly with StringTokenizer it would be 4 Strings(this is a test) and 10 ints for the countdown of numbers. now since the Strings doesnt have a delimiter such as a comma i can use the default delimiter which is the whitespace but then would that mean i would have to parse that same String twice since the numbers has "," has a delimiter? also should i worry about the whitespace that is separating the numbers after the comma? i did a small driver to test out the trim() using this and both outputs were the same. this may be a dumb question but if i call the trim() it eliminates the white space right, therefore i can just set "," as my delimiter, question is why is my output for both Strings the same?
    String input= "this is a test[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]";
    String trimmed = test.trim();
    System.out.println(input);
    System.out.println("\n" + trimmed);SORRY if its confusing im trying not to reveal too much of the hw assignment and just get hints on parsing this efficiently. Thanks in advance

similar example on how to parse out the numbers with
"," as a delimiter. thanks in advanceThe following is a simple recursive descent parser to parse a comma delimited list of numbers "(1, 2, 3, 5, 6)". The grammar parser by this code is
START -> LPAREN LIST RPAREN
LIST -> NUMBER TAIL
TAIL -> COMMA LIST | LambdaThe nonterminals NUMBER, LPAREN, RPAREN, and COMMA are defined by the regular expressions in the code.
Lexical analysis is done by the function advanceToken(). It stores the next token in the variable "lookahead" for further processing. The parse tree is represented recursively through the functions start(), lparen(), rparen(), list(), number(), tail(), comma(), which match the corresponding symbols in the grammar. Finally, translation is done in the function number(). All it does is put the numbers it finds into the List intList. you can modify it to your needs.
This code originally parsed simple arithmetic expressions, but it took only ten minutes to parse lists of integers. It's not perfect and there are several obvious improvement that will speed up performance, however the strength of the design is that it can be easily changed to suit a variety of simple parsing needs.
import java.util.regex.*;
import java.util.*;
public class RDPParenList {
    private static final Pattern numberPat=
                    Pattern.compile("([1-9]\\d*)|0");
    public static final Object NUMBER = new Object();
    public static final Pattern commaPat = Pattern.compile(",");
    public static final Object COMMA = new Object();
    public static final Pattern lparenPat=
                    Pattern.compile("\\(");
    public static final Object LPAREN = new Object();
    public static final Pattern rparenPat=
                    Pattern.compile("\\)");
    public static final Object RPAREN = new Object();
    public static final Token NULLTOKEN = new Token(null, null);
    String input;
    String workingString=null;
    Token lookahead=NULLTOKEN;
    List intList = new ArrayList();
    /** Creates a new instance of RecursiveDescentParse */
    public RDPParenList(String input) {
        this.input=input;
    public void parse(){
        workingString=input;
        advanceToken();
        start();
        if(! "".equals(workingString))
            error("Characters still remaining in input '" + workingString + "'");
    private void advanceToken() {
        // calling advanceToken must give a token
        if("".equals(workingString))
            error("End of input reached unexpectedly");
        // prune the old token, and whitespace...
        if(lookahead != NULLTOKEN){
            int cutPoint = lookahead.symbol.length();
            while(cutPoint < workingString.length() &&
                    Character.isWhitespace(workingString.charAt(cutPoint))){
                ++ cutPoint;
            workingString=workingString.substring(cutPoint);
        // Now check for the next token, starting with the null token...
        if("".equals(workingString)){
            lookahead=NULLTOKEN;
            return;
        Matcher m=numberPat.matcher(workingString);
        if(m.lookingAt()){
            lookahead=new Token(m.group(), NUMBER);
            return;
        m=commaPat.matcher(workingString);
        if(m.lookingAt()){
            lookahead=new Token(m.group(), COMMA);
            return;
        m=lparenPat.matcher(workingString);
        if(m.lookingAt()){
            lookahead=new Token(m.group(), LPAREN);
            return;
        m=rparenPat.matcher(workingString);
        if(m.lookingAt()){
            lookahead=new Token(m.group(), RPAREN);
            return;
        error("Error during lexical analysis. Working string: '" +
                       workingString + "'");
    private void start() {
        lParen(); list(); rParen();
    private void lParen(){
        if(lookahead.attrib == LPAREN){
            advanceToken();
            // OK. Do nothing...
        else error("Error at token '" + lookahead.symbol + "' expected '('");
    private void rParen(){
        if(lookahead.attrib == RPAREN){
            advanceToken();
            // OK. Do nothing...
        else error("Error at token '" + lookahead.symbol + "' expected ')'");
    private void list() {
        number(); tail();
    private void number() {
        if(lookahead.attrib == NUMBER){
            // Do something with the number!
            try{
                intList.add(new Integer(lookahead.symbol));
            catch(NumberFormatException e){
                // This shouldn't happen if the lexer is working...
                e.printStackTrace();
                error("Unknown Error");
            advanceToken();
        else error("Error at token '" + lookahead.symbol + "' expected a number");
    private void tail() {
        if(lookahead.attrib == COMMA){
            comma(); list();
        else {
            // Lambda production
    private void comma() {
        if(lookahead.attrib == COMMA){
            advanceToken();
            // OK. Do nothing...
        else error("Error at token '" + lookahead.symbol + "' expected ','");
    private void error(String message){
        System.out.println(message);
        System.exit(-1);
    public static class Token{
        public Token(String symbol, Object attrib) {
            this.symbol=symbol;
            this.attrib=attrib;
        public String symbol;
        public Object attrib;
    public static void main(String []args){
        if(args.length == 0)
            return;
        System.out.println("\nParse String: " + args[0]);
        RDPParenList p=new RDPParenList(args[0]);
        p.parse();
        System.out.println("OK!");

Similar Messages

  • OSX 10.7, SSDs, TRIM, and so on...

    Okay, so I have played with Windows 7 Home Premium on this wonderful little Booklet 3g for some time now. I hate it.
    I am a Mac guy, through and through, and this will never change.
    I have been running both Linux Mint 11 and Ubuntu 11.04 for the past two weeks and love them on the Booklet 3g, but the same ugly moster rears its head at every turn - the GMA 500 chip. What a lame and disappointing choice!
    I found a Poulsbo driver for Ubuntu that *sort of* works (anecdoatal information - I have yet to try it) and a terminal apt-get command to (I think) install the same exact file in Mint 11. It works, but the cursor flickers non-stop and a lot of the tasty features of the GMA 500 are still locked out. At least the resolution is correct and looks great. Nice!
    So, the main problems with putting on my retail Mac OSX disc (purchased just for such a project) was that the GMA 500 is not supported at all and there is NO SOUND - in OR out! This is a deal breaker for me as I am a musician and use Finale as my killer app. I MUST have working sound.
    So no OSx86 foolishness (ahem - testing) for this Booklet right now. 
    However, Lion is WAY faster than anything ever in the line of OSX versions, AND it now has TRIM support for all Macs. (Recent versions of Snow Leopard have had it for MacBook pros that have the SSD option.)
    With Lion being so cool (multitouch wonders and TRIM) and so fast, the idea of upgrading my Nokia with a decent SSD is now very attractive. And I may reinstall Win7HP, but will probably just stay with Linux Mint 11. If the OSx86 community manages to figure out Lion for this computer I might go that route as well as I would love to make this more comfortable and familiar to me if I am to use it a lot on the road as a Finale box. 
    Questions (after all that - sorry!):
    If I am to use something OTHER THAN WINDOWS as my OS (the most likely scenario for thus netbook) which SSD would be the best choice for me? Does this even matter? I do not know if Mint has TRIM support, but Lion does for certain. Will that affect my choices?
    With the plethora of Linux distros out today, which one seems to work best with this hardware setup? Joli OS (formerly JoliCloud) supports GMA 500 BEAUTIFULLY but is not a full OS. In my experience you have to have a connection even to get to the desktop. It is not cloud-based as they claim, but cloud-centric. If you are offline it is useless, or so my experiences have been. I HOPE this is incorrect as I really like the Joli OS quite a lot. Mint is do-able with tweaks for the GMA 500. Eveything else *just works* as it should. I like it. Any reason to change?
    TRIM support is really needed isn't it? I do not fully understand it, but am stoked that the Mac OS now comes with it. Now I can try SSDs in my new iMac 27" i5 (it has the capability but is probably not fun to install. I will have to see about this.
    Thanks for reading this rambling post. I have a lot of great ideas for this netbook, but because of the GMA 500 chip it seems like a lot of interest has waned. Shame about the RAM, too. What an idiotic idea. Oh, and the PATA/SATA bridge. Oh, dear. Maybe I need to sell this thing after all... ;-)
    the elephant
    mississippi, usa

    In practicality you can't. You can set the preference in the Privacy pane of the Safari preferences to ask websites not to track you, but I don't believe Google honors that setting, and they most certainly store all sorts of cookies which you probably will get even if you set Safari to block all cookies since web programmers have ways around those blocks. All you can do is delete the cookies and other junk on a regular basis. Many cookies hide, so I use Cookie from SweetP productions which does a good job of deleting most if not all of the cruft web sites leave.
    Regards.
    Disclaimer: any product suggestion and link given is strictly for reference and represents my opinion only. No warranties express or implied. I get no personal benefit from the sale of any product I may recommend in any of my posts in the Discussions. Your mileage may vary. Void where prohibited. You must be this tall to ride. Objects in mirror may be closer than they appear. Preservatives added to improve freshness. Contestants have been briefed on some questions before the show. No animals were harmed in the making of this post.

  • Importing CSV file and parsing it

    First of all I am very new to writing powershell code.  Therefore, my question could be very rudimentary, but I cannot find an answer, so please help.
    I'm trying to read a CSV file and parse it.  I cannot figure out how to access nth element without hardcoding its name.
    $data = Import-Csv $file   #import CSV file
    # read column headers (manually read the first row of the data file, or import it from other source, or ...)
    $file_dump = Get-Content $file  #OK, I'm sure there is another way to get just the first line, but that's not relevant
    $name_list = $file_dump[0].split(",")
    # access element
    $temp = $data[$i].Name  # works - but that's HARDCODING the column name into the script - what if someone changes it?
    #but what I want to do is
    $temp = $data[$i].$name_list[0]
    How do I do this in PowerShell?

    So you're asking how to get the first data point from the first column, no matter what the header is?
    Why won't you know what your input file looks like?
    You can always drop the first line of the file to remove the existing headers and then use the -Header parameter of Import-Csv to give yourself known headers to reference (this will only work if you know how many columns to expect, etc etc etc).
    http://ss64.com/ps/import-csv.html
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • How to read and parse a comma delimited file?  Help

    Hi, does anyone know to read and parse a comma delimited file?
    Should I use StreamTokenizer, StringTokenizer, or the oro RegEx packages?
    What is the best?
    I have a file that has several lines of data that is double-quoted and comma delimited like:
    "asdfadsf", "asdfasdfasfd", "asdfasdfasdf", "asdfasdf"
    "asdfadsf", "asdfasdfasfd", "asdfasdfasdf", "asdfasdf"
    Any help would be greatly appreciated.
    thanks,
    Spack

    import java.util.*;
    import java.io.*;
    public class ResourcePortalParser
        public ResourcePortalParser()
        public Vector tokenize() throws IOException
          File reportFile = new File("C:\\Together5.5\\myprojects\\untitled2\\accessFile.txt");
         Vector tokenVector = new Vector();
          StreamTokenizer tokenized = new StreamTokenizer(new FileReader(reportFile));
         tokenized.eolIsSignificant(true);
              while (tokenized.nextToken() != StreamTokenizer.TT_EOF)
                   switch(tokenized.ttype)
                        case StreamTokenizer.TT_WORD :
                        System.out.println("Adding token - " + tokenized.sval);
                             tokenVector.addElement(tokenized.sval);
                             break;
              return tokenVector;
    [\code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Use of Trace key in transformer and parser of ODI Data Quality

    Hi All,
    Can someone explain to me the significance of Trace key in the transformer and parser processes (modules) in the ODI data profiling and quality part.
    I have read all the documentation present of the ODI dataquality getting started and the user guide. I was not able to find any answer.
    It would be great anyone can answer this question.
    Thanks in advance,
    Chapanna

    Hi Julien,
    The Trace key option is present in the "transformer" and "transformer address reconstructor" steps when executing an ODQ Name and Address Quality project.
    The purpose of this trace key is to help developer to easily debug and identify records that have incorrectly transformed. A primary key/surrogate key is usually chosen as the trace key to facilitate the debugging process by identifying the exact record.
    Thanks,
    Chapanna

  • Verifying and parsing "query" in cm:select query="..." ...

    I'm writting a session EJB that's passed a param (String query) which is supposed
    to be any valid "query" string passed to the cm:select tag (see "http://edocs.bea.com/wlcs/docs31/p13ndev/jsptags.htm#1057716"
    for more info on this tag and the query param).
    My problem is this: I don't think I should write ALL the stuff to validate and
    parse this string because bea has already done it in: com.beasys.commerce.foundation.expression.*;
    but the only source of documentation available on those classes is the Javadoc(which
    isn't that complete). Has anyone used these classes before(Search, Expression,
    Criteria, Logical)? Does anyone know of some documents on how to use them?
    Please help if you can. I'd really appreciate it. Thanks.

    rajan please just google or search SDN. there are large number of post for this..
    to give you a head start: for using a particular index in the select query a %_HINTS ORACLE 'INDEX clause is added

  • Future buyer of W530 with questions on screen type and GPU.

    Hey guys,
    I'm contemplating buying a W530 laptop to replace my aged Acer Aspire 5517. Anyway, I have some questions regarding screen type and graphics cards. One, my current Acer has a 16x9 HD screen that works perfectly fine for me, unless I go outside, so is it really worth the extra 200 bucks to upgrade to the 1920x1080 screen, or is that just overkill? same question regarding making a choice between the NVIDIA Quadro K1000M or K2000M, again, is it worth the money and what"s the biggest difference? Now I'm not a hardcore gamer, I mostly surf the web, do my work, and play a few games that are not really too demanding on the GPU.
    Thanks!

    henrodstone wrote:
    Hey guys,
    I'm contemplating buying a W530 laptop to replace my aged Acer Aspire 5517. Anyway, I have some questions regarding screen type and graphics cards. One, my current Acer has a 16x9 HD screen that works perfectly fine for me, unless I go outside, so is it really worth the extra 200 bucks to upgrade to the 1920x1080 screen, or is that just overkill? same question regarding making a choice between the NVIDIA Quadro K1000M or K2000M, again, is it worth the money and what"s the biggest difference? Now I'm not a hardcore gamer, I mostly surf the web, do my work, and play a few games that are not really too demanding on the GPU.
    Thanks!
    The 1920 x 1080 screen offered on the W530 is one of the best TN panels on the market so it's a worthwhile upgrade. Upgrading from a K1000M to a K2000M isn't a good idea unless you either spend a good amount of time playing games (or want higher settings playable) or need the extra power for CAD.
    On my W530 , I upgraded the screen to the 1080P one and kept the K1000M GPU.

  • Many Questions on Windows 8 and Bootcamp

    Hi. I have a couple questions question on windows 8 and bootcamp. I know this is probably on the internet somewhere, but i can't find it anywhere if it is. So please don't strike me down for repeat questions.
    My first question is wether or not widows 8 will run on the current version of bootcamp. I know that it is not fully compatible but can it be installed with few issues since the underlying code for windows 7 and 8 should be relatively similair. I have read a posting on line that says this is possible but i wanted a second opinion. I have a 64 bit version system builder edition shipping to me right now, is this ok.
    My second question is when (if ever) the patches come out for winodws 8 to run perfectly on bootcamp, will I just be able to download them, Install the patches and everything will be just fine. Would/ could it be done with out having to reinstall the operating system. This is important because a system builder lisence can only be installed once and then i have to buy another copy of windows 8 for $100.
    Any and all input would be great. Thanks!

    in terms of updates to win8 then as far as windows8 goes it's running on a normal "pc" not on a mac it's not virtualization here so everything works as normal
    I bought an imac 2011 version 22" 4GB ....
    I installed windows7 ultimate 64bit on it
    since I bought the digital update to windows 8 pro
    updated over the internet (you download an exe and take it from there)
    it updated fine it use the windows7 drivers so everything in terms of mac stuff works as before
    I let it update the amd video card driver and got a lot of crashes at bootup
    rolled back to the bootcamp win7 drivers and it's a lot better
    sure every now and then startup result in a crash but a reboot always get me into win8
    play games and program in win8 never had a cash when I get in and because it's native games run great
    likely when the official apple win8 support comes along I will stop getting the odd crash at boot into win8

  • Where do i find daily posted question on sap abap and sap webdynpro abap

    Hi
    where do we find Daily posted questions on sap abap and sap webdynpro abap in scn sap  so that i can go through the questions and answer them .

    Hi,
    Go to the Content tab of any space and click on discussions. Then you can sort them by date created or any other
    For ex: This link for WDA discussions: - Web Dynpro ABAP
    You can also click on Receive email notifications for any space to get updates on that space.
    hope this helps,
    Regards,
    Kiran

  • Repeated retrieval and parsing of XML file causes IE to display an error message

    I have a flash application that makes a HTTP call every 120
    seconds to retrieve a xml file. This file is being generated with
    fresh data every few minutes or so and pushed to the apache web
    root with a unix mv command.
    I'm using the standard Flash XML object. The HTTP request is
    NOT over SSL (I know there is a bug related to this). Here is the
    code to make the retrieval:
    xmlData = null;
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = xmlTraverse;
    xmlData.load("
    http://domain/dir/somefile.xml");
    The "xmlTraverse" method was written by my team. There is no
    known bug in the parsing logic.
    Intermittently and unpredictably, IE will display the
    following dialogue box:
    "A script in this movie is causing Macromedia Flash Player 8
    to run slowly. If it continues to run, your computer may become
    unresponive. Do you want to abort the script?"
    I originally leaned toward an infinite loop causing this
    problem. The timeline jumps back and forth between two frames,
    checking in the latter frame if the xml has been loaded and parsed
    before allowing execution to move to the next frame. I hardcoded
    the loop check to always be false, but this did not produce the
    message above (although it pegged my CPU).
    The only scenario where I've managed to reproduce the message
    above is by making a huge (50 MB) xml file. This consistently
    produces the message. But I don't realistically see how our xml
    file could ever be over 1 MB.
    First, can anyone cite another cause for this message? I'm
    starting to lean towards the issue lying in our parsing logic such
    as infinite recursion on a badly formed XML file. Second, does
    anyone know of a solid xml SAX parsing actionscript utility where
    you can assign callbacks to XML nodes? If the problem is in the
    parsing, we may have to replace our homegrown solution with
    something more robust and proven.

    Is it a recursive parsing function? I'm not sure about this,
    but I think this message pops up when there are more than 256
    iterations in a loop (I've read something about this 256 limit,
    that will end while loops if they exceed this, but with another
    error message... but again, I'm not totally sure about that).
    The message is typically for loops, but I don't know when it
    fires. Sometimes it appears for really 'small' loops when you're
    using the debugger (e.g. a for loop with 100 iterations), so maybe
    it is connected to the time a loop is running. You could place some
    trace statements in the xmlTraverse method, to see where the
    function was when the message occurs, or take the time the function
    needs and check if this might be related to the error.
    That's all I can come up with, guess there are people here
    with more insight to this...
    cheers,
    blemmo

  • Hi I want to change your e-secret questions because I forgot the answers I have tried sending reset questions on my mail and I have not received mail

    hi I want to change your e-secret questions because I forgot the answers I have tried sending reset questions on my mail and I have not received mail
    New mail that I want is [email protected]
    Alternative to the Old one

    From  King Penguin
    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)

  • Launch pad has question mark in icon and won't launch

    Hello,
    On my intel mac with lion the icon for launch pad has a question mark over it and wont launch. Also when I hit f4 it wont start launch pad. Any help would be appreciated.

    Somehow you've managed to delete it.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • Error in retrieving and parsing XML File

    Hi Folks
    I am Working on People centric user interface, While i am custimizing a application in Business application Builder i am getting this error
    " Error in retrieving and parsing XML File "
    can any body look on this and give me the solution
    it will be rewarded
    Regards
    M.S.Kumar

    Hello,
    As mentionned by SAP_TECH, avoid to use the BAB.
    Go to CRMC_BLUEPRINT_C and use the different option in the menu to customize the field group, toolbar group, events, ...
    Use the PCUI cookbook to find your way.
    Regards,
    Fred

  • Question in using sockets in parsing XML!!!!(urgent plz help)

    i have a server/client program and the client has some XML files the server want to process and parse them using DOM.
    But i want to do this without having to transfer neither the whole file nor line-by-line of the file
    does anybody know how to do this???
    how to connect the output stream of the socket of the client with this file??
    thanks in advance

    i did it and here are the exact line of code to do it:
    DocumentBuilderFactory factory =
    DocumentBuilderFactory.newInstance();
    /factory.setValidating( true );
    // obtain object that builds Documents
    DocumentBuilder builder = factory.newDocumentBuilder();
    URL url = new URL("file://comp1/xml/Stack.xml");
    // obtain document object from XML document               Document document = builder.parse( url.openConnection() .getInputStream() );

  • Loading and parsing XML files

    I am currently working on an application in which I have a XML file that is 1.5 mb and has 1100 records that I need to load and parse. Loading takes less than a minute, but when I try to parse it with the DOM parser it's taking too much time. I am trying to put it into an array and then display it as if I'm tied to a database. I need a different approach. Does anyone have any experience and insight with the DOM parser? Would the SAX parser be a better way to go, why and how?

    You can use SAX... but SAX is good only if you want to read the data once.
    If you want to use the same data again and again then you might have to parse the file again... which prooves expensive.
    DOM will take too much of memory and CPU time.
    Have you tried using JDOM ? it is a new kind of a XML parsing utility that is quite lightweight and has good api to recurse the JDOM tree also.
    check it out at
    http://www.jdom.org.
    hope this helps.
    regards,
    Abhishek.

Maybe you are looking for

  • GR for outbond delivery in STO

    Hi, I have done cross company STO customization,  supplying plant is dpot and ordering is manufacturing plant  now delivery and billing is done in depot and when i am making the GR ref. to outbond delivery in manufacturing plant the duty which we hav

  • Startup Disk? Emergency? Starting up from disk?

    Hi All, A friend called, he is using panther on a 12" powerbook. I suspect he threw away his HD on the desktop, or moved it to an external HD and now when starting up he just gets the spinning ball. SO... a couple questions. Help would really be appr

  • Need patch ID for Linux 64-bit equiv to 10.2.0.4 patch 17 for Windows 32-bi

    Need patch ID for Linux 64-bit equiv to 10.2.0.4 patch 17 for Windows 32-bit Hello, We are transporting a database from Windows 32-bit to Linux 64-bit. Version/Patch on the Windows machine is 10.2.0.4.0 (10g Release 2 Patch Set 3), interim patch 8258

  • Transferring Purchased Music

    My hard drive recently crashed. Before my computer crashed I transferred all my music and files onto my ipod. I received my computer back from repair and was able to put all of my old songs on my itunes library except for the music I have purchased.

  • The battery problem,

    The battery indicator does not show normally. It shuts down after the adaptor plucks off. When the window is openned, It is shown visit to "www.hp.com/go/techcenter/startup"