Servlet combination with text file ...

hai dude , i wanna ask some a terrible question
may be you can help me with this ...
i made servlet admin for loggin into system , but in this case
i used text file not database (sql,or else) .
for example i have admin.txt and contain :
admin myadmin
admin refers to username and myadmin refers to password
can you guys show me a little program servlet that i can learn
and study about login with servlet !!!!!!

Should be something like this:
public class theServlet extends HttpServlet
private Hashtable namePassword = new Hashtable();
public void init(ServletConfig config) throws ServletException
super.init(config);
try
     BufferedReader br = new BufferedReader(new FileReader("admin.txt"))
     String line = "";
     while ((line=br.readLine())!=null)
          // getting data from the lines
          // every line have to be the form: username password
          StringTokenizer stk = new StringTokenizer(line);
          namePass.put(line.nextToken(),line.nextToken());
     br.close();
catch (Exception e)
     e.printStackTrace();
public void doGet( HttpServletRequest req, HttpServletResponse resp )
throws ServletException, IOException
resp.setContentType("text/plain");
PrintWriter out = resp.getWriter();
     // the calling html-page have to have a form with the textfields username and password
     String username = req.getParameter("username");
     String password = req.getParameter("password");
     if (((String)namePassword.get(username)).equals(password))
          out.println("Login OKAY!");
     else
          out.println("Login failed!");
} // End doGet

Similar Messages

  • Can I combine two text files into ine with ZEN

    I have to append a really long character string onto an existing txt file.
    I tried to modify the file in ZEN but the app blows up when it runs. Is
    there a way I could concatenate these two txt files together with ZEN
    instead?

    Another option would be to create two environment variables each holding
    1/2 the string. Then use the Text file section to write the two strings
    to the one file.
    Robin Witkop-Staub wrote:
    > oh - good idea...
    >
    > "Anders Gustafsson" <[email protected]> wrote in message
    > news:[email protected]..
    >> Robin Witkop-Staub,
    >>> I have to append a really long character string onto an existing txt
    >>> file.
    >>> I tried to modify the file in ZEN but the app blows up when it runs. Is
    >>> there a way I could concatenate these two txt files together with ZEN
    >>> instead?
    >>>
    >> Spawn a batchfile that concatenates the files, ie copy file1+file2 file3
    >>
    >> - Anders Gustafsson, Engineer, CNE6, ASE
    >> NSC Volunteer Sysop
    >> Pedago, The Aaland Islands (N60 E20)
    >>
    >> Novell does not monitor these forums officially.
    >> Enhancement requests for all Novell products may be made at
    >> http://support.novell.com/enhancement
    >>
    >> Using VA 5.51 build 315 on Windows 2000 build 2195
    >>
    >
    >
    Craig Wilson
    Novell Product Support Forum Sysop
    Master CNE, MCSE 2003, CCN

  • How to create a mapping with text file as my target

    I need to create a mapping with source as a table and target as a text file.
    I am using OWB 10g R2. with database Oracle10g.
    Any one can help me to create a mapping with a text file as target.

    Hi,
    just create a File-Location and File-definition and use this file-operator as target object inside your mapping.
    Regards jwehner

  • Email with Text File Attachement as Source

    Hi All,
           One of my interfaces needs to listen to incoming mails with an text file attachements.I wish to know how we can convert the text file contents into XML to further process it on the reciever side.

    Hi,
    To perform content conversion of a flat file, check these blogs,
    /people/venkat.donela/blog/2005/06/08/how-to-send-a-flat-file-with-various-field-lengths-and-variable-substructures-to-xi-30
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    Also, to understand file content conversion better, you can check this link on SAP Help,
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Regards,
    Bhavesh

  • Michel: sync gtasks with text files

    I wrote Michel, a gtaks-to-text-file synchronizer. Michel is your friendly mate that helps you managing your todo list. It can push/pull flat text files to google tasks.
    Right now, it features two commands:
    michel pull
    prints the default todo list on the standard output
    michel push <TODO.txt>
    replaces the default todo list with the content of TODO.txt
    Of course you need a gmail account to make it work. It uses oauth, so when you start it the first time, it will give you an url to visit and you'll have to give access to the app, then it will save a token and won't ask next time. If you want to delete the token, it is stored in $XDG_DATA_HOME/michel/oauth.dat.
    The code is on github. As usual comments and patches are welcome...
    Last edited by duquesnc (2011-09-23 21:28:56)

    Oh, I have to add that currently, the package won't build correctly. That is not due to the python2-google-api-python-client package which does not set the rights correctly. A quick and dirty fix is to
    # chmod +r /usr/lib/python2.7/site-packages/google_api_python_client-1.0beta4-py2.7.egg-info/top_level.txt
    I notified the owner of python2-google-api-python-client of the correct change to do.
    Last edited by duquesnc (2011-09-23 21:26:35)

  • Domain Value Mapping with Text file

    Hai,
    I have done the Domain value mapping with the xml file to xml file and it is working fine.
    But in the case of Text file to Text file it is not working i.e. If the citiname is the
    first field it is domain value mapping and working fine.
    INPUT:
    Erode, Mahes, 22
    Coimbatore, Veera, 22
    OUTPUT:
    ED, Mahes, 22
    CBE, Veera, 22
    But if I change the Citiname to the second column it is not working the problem is
    it is not working for subsequent columns.
    INPUT:
    Mahes, Erode, 22
    Veera, Coimbatore, 22
    OUTPUT:
    Mahes,, 22
    Veera,, 22
    The input Text files are delimited by "comma" and optionally enclosed by "space".
    Does anyone have attained the DVM in the Text file successfully.
    Please help me.

    Thank you for the reply Abhi
    Text to Text means instead of giving the input file as XML file i am giving the input as a simple .txt file and I also want the output in the .txt format.
    For the text file only it is not working fine in the xml file to xml file it is working fine.
    For your another query I am not providing the correct parameters for "lookup-dvm"
    I am giving the xsl file
    <?xml version="1.0" encoding="UTF-8" ?>
    <?oracle-xsl-mapper
    <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
    <mapSources>
    <source type="WSDL">
    <schema location="TextInput1.wsdl"/>
    <rootElement name="Root-Element" namespace="http://TargetNamespace.com/TextInput1"/>
    </source>
    </mapSources>
    <mapTargets>
    <target type="WSDL">
    <schema location="TextOutput1.wsdl"/>
    <rootElement name="Root-Element" namespace="http://TargetNamespace.com/TextInput1"/>
    </target>
    </mapTargets>
    <!-- GENERATED BY ORACLE XSL MAPPER 10.1.3.3.0(build 070615.0525) AT [TUE JUL 15 15:31:55 IST 2008]. -->
    ?>
    <xsl:stylesheet version="1.0"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:ehdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
    xmlns:ns0="http://www.w3.org/2001/XMLSchema"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:imp1="http://TargetNamespace.com/TextInput1"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/file/TextInput1/"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/file/"
    xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/file/TextOutput1/"
    exclude-result-prefixes="xsl plt pc ns0 jca imp1 tns hdr ns1 bpws ehdr hwf xp20 xref ora ids orcl">
    <xsl:template match="/">
    <imp1:Root-Element>
    <xsl:for-each select="/imp1:Root-Element/imp1:Leaf-Element">
    <imp1:Leaf-Element>
    <imp1:C1>
    <xsl:value-of select="imp1:C1"/>
    </imp1:C1>
    <imp1:C2>
    <xsl:value-of select='orcl:lookup-dvm("Citinames","Long",imp1:C2,"Short","")'/>
    </imp1:C2>
    <imp1:C3>
    <xsl:value-of select="imp1:C3"/>
    </imp1:C3>
    </imp1:Leaf-Element>
    </xsl:for-each>
    </imp1:Root-Element>
    </xsl:template>
    </xsl:stylesheet>
    Here I am checking the DVM function for the Second column and it is not working and I have given their Inputs and Outputs in my first message .
    I have another question as you told both import and export of the DVM is always in the XML format only so I have a doubt whether the lookup-dvm will be working for xml files only and not for text files.
    But in my case in text file it is working for the first column but not in the subsequent columns.
    Thanks.

  • Prepare List with text file fields

    Hi,
    This is rama krishna. I need to convert text file fields to a List.
    My requirement is to read a text file and prepare one list depending up on the fields.
    For example I want to read the following foollowing text fields into list(it may be list or linked list).
    <b>
    Invoice Number voice Date Voucher ID Gross Amountount Available Paid Amount
    51169 Nov/17/2005 00538767 7,043.23 0.00 7,043.23
    51275 Dec/14/2005 00542544 929.87 0.00 929.87
    601001 Jan/08/2006 00542545 1,837.14 0.00 1,837.14
    Vendor Number Check No Date Pay Amount Total Discounts tal Paid Amount
    21C029 218534 Jan/19/2006 $9,810.24*** $0.00 $9,810.24</b>
    I want Vendor number as on list to that list I want add
    Invoice nos lists.
    Thanks & Regards
    Rama Krishna

    Hi, Rama!
    Unfortunatly it' s beyond the scope of this forum to give that detailed advice on basic java se techniques like opening a file input stream and working with collections.
    Please refer to the suns standard documentation on file i/o and collections for detailed information on that.
    If you' ve any additional questions on more SAP specific problems, don' t hesitate to ask!
    Regards,
    Thomas

  • Compare with text file

    Is it possible to do a line by line compare with the data in a text file and print the required data?
    BufferedReader readCode = new BufferedReader(new FileReader("code.txt"));
    String code = readCode.readLine();
    while(more) {
    System.out.print("Code:");
    String productCode = in.readLine();
    while (code != null){
         code = readCode.readLine();
         if (!(productCode.equals(code) || productCode.equals(code) || productCode.equals(code) ||productCode.equals(code) || productCode.equals(code) || productCode.equals(code) || productCode.equals(code) || productCode.equals(code))){
         // Goes back to the next loop interaction. Skiping the rest of the loop below
         System.out.println("Invalid product code. Check the product code again");     
         continue;
    productTemp[j] = productCode;
    do{
         /*Keep asking for a quantity until some valid value is entered
         System.out.print("Quantity[0-100]:");
         productQuantity = Integer.parseInt(in.readLine());
    }while(productQuantity > 100 || productQuantity < 0);
    quantity[k]=productQuantity;          
    totalQuantity = quantity[k] + totalQuantity;
    j++;
    k++;
    noOfItems++;          
    }     i cant seem to compare the user input code with the code in my textfile.i am stuck here...can somebody enlighten me?

    nvm...thanks for ur help anyway..i try others
    ways..save ur remarks for other pplThis is a public unmoderated forum. If you don't want remarks, don't post.
    Besides, if you're not willing to describe your problem in better detail, what kind of "help" do you expect? It's not like you've entered a forum full of psychics. Your problem is unclear. You've been given suggestions. If you have a more specific question, feel free to ask. Otherwise, feel free to continue floundering about.
    Good luck.

  • Reloading a 3500XL with Text File

    How do I clear the config and reload the switch with a text file? I have the file ready to go but can't figure out how to get it to take. Any help would be appreciated. Thanks.

    Erase startup
    reload
    N Don't do the config!
    enable
    copy and paste the text file
    ATTENTION do NOT paste from a Wordprocessor like MS-WORd, they add all the ugly control codes(especially fun at the password!)

  • Help required with text file handling in GPIB

    Hi attached is my vi for GPIB communication with Aginelt Network Analyzer in Labview 8.
    I'm saving the data of network analyser into text file(appending all the data). I wish to make some changes into it. As can be seen there is a input which asks for number of points/segments. Supposed I give that input as 201 points(it can be 401,801,1601,51,etc.) than after every 201 points data should get appended into a new coloumn and not into 202 row. Seperate coloumn should start for the whole set of 201 points, where as currently what is happening is all the data is getting appended one below the other.
    Can anyone help around,
    Regards
    Attachments:
    finaltemp.vi ‏52 KB

    Here...
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    finaltemp(80).vi ‏52 KB

  • Java with Text file

    Hi
    I'm new in Java , just start 2 week agao, I want to read data for text file ...
    Argentina | Armenia | Australia | Austria | Azerbaijan |
    Canada | Cape Verde | Central African Republic | Chad | Chile | China |
    I will use " | " to separate a string and to parse this string to array.
    I have seen some the sample use : StringTokenizer but I didn't get about it
    can you give me more information or short code

    Sample code here: http://www.ccs.neu.edu/course/com3118/util2.html
    You could also use String.split()

  • Receiver mail with text file attached without line feeds

    Hi, friends
    I have a text file  to mail scenario, where file must be attached to receiver mail.
    Receiver CC mail is protocol XIPAYLOAD and use mail package and keep attachment.
    In tab module, i have:
    Module name --> SAP XI Sample/ConvertCRLFfromToLF
    Module configuration --> mode LFtoCRLF
    The plain text file is attached to mail but there are no line feeds after the plain text lines.
    Thanks, in advance

    Stefan,
    This is not a Java mapping, it's an ABAP mapping.
    I've tryed also to insert this characters, but without success.
    In my abap class i have:
      data: l_newline type c value cl_abap_char_utilities=>newline.
      data: l_linefeed type c value cl_abap_char_utilities=>CR_LF.
      clear wa_string.
      incode = idocument->get_elements_by_tag_name( 'linea' ).
      length = incode->GET_LENGTH( ).
      do length times.
        outcode = incode->get_item( index = d_lines ).
        wa_linea = outcode->get_value( ).
        if wa_string is initial.
          wa_string = wa_linea.
        else.
          concatenate wa_string l_newline  l_linefeed crlf wa_linea into wa_string.
        endif.
        add 1 to d_lines.
      enddo.
      l_element_dummy  = l_document->create_simple_element(
                    name = 'Content'
                    VALUE = wa_string
                    parent = l_element_root  ).
    so...it's similar to your suggestion..
    Any other input, please?
    Regards,
    Carme.

  • How can I combine multiple text files into a single, alphabetized list?

    I have many, many lists of song titles. Each in its own textedit file. There is tons of overlap and duplication. I want to make a master list that has every song listed.
    If I could somehow just merge them all and alphabetize the lines, I could manually get rid of duplicates fairly easily.
    I have Tiger. Don't know if I have any application that would help. I probably don't want to buy an application, though, because I suspect I may not be able to stick with Tiger much longer.
    I appreciate any tips you can give me.
    Thanks a lot,
    Bruce

    Hi Bruce, Tex-Edit Plus for OS X...
    http://www.tex-edit.com/
    It can Merge files then Sort them easily, even has a remove duplicate lines script available.
    If the version you get doesn't have the sort perchance, here's a link, put sort in the search scripts box, get the second one, Sort Selection...
    http://dougscripts.com/texedit/

  • Problem with Text file attachment

    Hello All,
    I am sending data from my program via mail in an attachment of text format in 4.6C. But the format of the data in the attachment is not correct. There is no line break in the data.
    I've tried putting the line break manually by using hexadecimal code '09' as the line break. But it is not working.
    Kindly suggest.
    Thanks

    Hello Brad,
    I marked the problem as solved previously because the issue of all the lines coming together was solved.
    So, I marked the question as solved.
    Now, I have a different problem and rather than creating a new thread I opened this one only.
    Thank you

  • Getting source codn with TEXT file

    Hi everyone.
    I have a question about to get a source code using some kind of function or class. In case of report program coded in ABAP, I can get using "read report ... " In case of BSP,However, I don't know how. Anyone who knows the method lets me know please.
    Regards,
    Jongone.

    Welcome to SDN.
    Check out the following article by Eddy
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap-code-samples/bsp/abap code sample for download of a bsp application.pdf
    Regards
    Raja

Maybe you are looking for

  • F110 Proposal Error

    Hi, I am getting the following Proposal Error in F110. Job started Step 001 started (program SAPF110S, variant &0000000167782, user ID INTCOPAYMENT) Log for proposal run for payment on 20.09.2011, identification ZR496 Due items with currency USD, pmn

  • IOS 4.2.1 intermittent data

    Wifi connection will disconnect intermittently on both my iPhone 3G and iPhone 4. This happens sometime to both at the same time, or one at a time. I did a lot of test on my wireless network trying to find the cause of this. What i discovered shows t

  • Select XML Schema resource dynamically in Oracle Service Bus 10gR3

    I have configured a Any XML Service Proxy service in OSB 10gR3. Based on one of the elements in the XML, name of the XML Schema against which the XML would be validated is got. For the Validate action in the message flow modelling, how do I select th

  • Automatic transcoding for iPod

    I have most of my music library in ALAC which you probably know takes up a lot of space, to much for even an 80GB iPod. So, I would like to continue to automatically sync my iPod with iTunes but have iTunes transcode the lossless files to AAC on-the-

  • Gradient Annotator across multiple objects - weirdness

    I have six rectangles in a row. I apply a radial gradient to them as a whole, by dragging the Gradient Tool. According to the documentation for CS4, that's what you do if you want only one Gradient Annotator across multiple objects. Problem is, I can