How to get a filename list from a website?

Hi,Everybody!
          I want get filename list form a dirctory in a website:
          For example:
          There's a website is: http://www.otherweb.com , there's some files like
          this: http://www.otherweb.com/dir/001.html
          http://www.otherweb.com/dir/002.html
          http://www.otherweb.com/dir/abc.html
          http://www.otherweb.com/dir/ffe.html
          So how can I get all the filename from the directory "dir"?
          like 001.html,002.html,abc.html,ffe.html....
          How can I do? Which class and method I can use?
          Thanks
          Catherine
          

          check out www.servlets.com.
          They have a servlet which can upload files from a remote machine
          to a directory on your web server.
          "Catherine" <[email protected]> wrote:
          >Hi,Everybody!
          >
          >I want get filename list form a dirctory in a website:
          >
          >For example:
          >
          >There's a website is: http://www.otherweb.com , there's some files like
          >this: http://www.otherweb.com/dir/001.html
          > http://www.otherweb.com/dir/002.html
          > http://www.otherweb.com/dir/abc.html
          > http://www.otherweb.com/dir/ffe.html
          > ......
          >So how can I get all the filename from the directory "dir"?
          >
          >like 001.html,002.html,abc.html,ffe.html....
          >
          >How can I do? Which class and method I can use?
          >
          >Thanks
          >
          >Catherine
          >
          >
          >
          >
          

Similar Messages

  • How to get installed application list from a remote system

    i am using.. an windows XP OS.. i want to collect the installed application list(in any accessible format) from my near by system(any system in the network). and need to invoke any application (from the list generated) from my system.....
    please help me. any ideas.....
    Most help full if someone come up with ideas......

    Sir
    i am working on a project..REMOTE APPLICATON DESKTOP SHARING((I am Final Year Engineering Technical Student,......Kerala,India)....
    which brings the application GUI from remote systen to our system.. and workon it(similer to desktop sharing)
    for this i first need which all applications are installed on which on systems...
    thats why i needed the application list..
    if the answer is NO... can u suggest some method or any application through which this can be done...
    no matter which language.....which method....how difficult.....etc
    i need a solution.... Can u help....

  • How to get available fields list from web service

    hi,
    i'm using webservices to create ,update and deleting a alead.
    what i want is i want all the id of available fields in my account ?
    how acn i get those id's ?
    regards,
    praneeth

    hi,
    thank u for reply.
    i would like to create a servlet to insert alead to OCRM,
    but for that the user selects the fields he want to insert and provides corresponding values to those selected fields.
    so that i need to display all the fields available in my OCRM account.
    regards,
    Praneeth

  • I recently lost my iPhone, how do i get my contact list from my last back up on iTunes into my android phone in the meantime before i get a new iPhone?

    My iPhone was recently stolen and i had all my contact phone number which i need quite urgently on the spare android phone am using in the in, how do i get my contact list from my last back up on iTunes into my android phone in the meantime before i get a new iPhone?

    Hi If you have them on your PC, just copy them and you will need to enter, each one on Android phone by typing, them in. Cheers Brian

  • I have a Verizon LG Versa cell phone, how do I get my contact list from there to my new iphone 4?

    I have a Verizon LG Versa cell phone, how do I get my contact list from there to my new iphone 4?

    Matt,
       My new iPhone 4 is on the way from Verizon, and I too am moving on from the LG Versa (a poor man's iPhone) so I've researched this.  I trust you have been using the backup assistant on the LG phone to backup your contacts?  If so, and you investigate the app store you will see an app for doing the same task on you new iPhone.  Initially it will take you LG contacts you have backed up at Verizon to their new home on the iPhone.
    According to user comments there appear to be a couple of issues with the app you need to be aware of:
       1.  It will not automatically backup your iPhone, you will need to initiate updates in the future on your own.  and
       2.  You will see in the comments, that there have been some issues with length of backup when you add lots of contact photos to your list.
       This coupled with the address book sync from your computer should make your list whole, in fact the move to the iPhone will allow me to consolidate my address book with my cell phone contacts.  Then once I remove the duplicates all will be right with the world.
    Steve

  • How can I get my contact list from my I phone 5 to my I pad?

    how can I get my contact list from my I phone 5 to my I pad air?

    One way is via iCloud. Settings > iClouds > Contacts on for both.

  • How to get the filename from J2SE File adapter

    In our project scenario , we are using J2EE and J2SE engine both .J2EE for mapping  and J2SE for Deliveying the message .
    In one senario, routing will be based on the filename .
    J2SE Sender File adapter --- XI Adapter --- XI pipe line
    So the File reaching to XI pipelane via J2SE File adapter--> XI adapter.
    When we are using the dynamic configurator in the XI to get the filename
    we are not able to get the file name  becasue it is coming to XI via
    XI adapter.
    How to get the filename ????Hope I am clear about the problem.

    hi,
    try this
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    //obtengo la Key del FileName
    DynamicConfigurationKey keyF = DynamicConfigurationKey.getName();
    http://help.sap.com/javadocs/NW04/current/pi/com/sap/aii/mapping/api/DynamicConfigurationKey.html
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c89607-e4d9-2910-7280-f6746e964516
    /people/mohammed.zabiulla/blog/2008/03/26/have-you-ever-tried-to-determine-mail-cc-dynamically
    Hope it helps
    Thanks
    Rodrigo
    Edited by: Rodrigo Pertierra on Apr 11, 2008 9:31 AM

  • How to get updated table values from objectlistdataproviders

    how to get updated table values from objectlistdataproviders

    Hi,
    Here is a sample code
    start-of-selection.
    *Select the data you need into an internal table
      loop at it_mara into wa_mara.
    data that needs to be displayed in the output list
        write:/ box as checkbox,
                wa_mara-matnr under text-001,
                wa_mara-maktx under text-002,
                wa_mara-lgort under text-003.
    Hide the data that needs to moved to internal table
        hide:wa_mara-matnr, wa_mara-maktx, wa_mara-lgort.
      endloop.
      clear wa_mara.
    end-of-selection.
      lines = sy-linno.
    at line-selection.
      clear:it_matnr. 
      do lines times.
        check sy-index > 1.
        box = space.
        read line sy-index field value box.
        if box = 'X'.
    *data selected using check box is moved to internal table
          append wa_mara to it_matnr.
        endif.
      enddo.
    Regards,
    Jisha.

  • How to get workflow task list ID?

    I created simple workflow in Office 365 SharePoint 2013 using SharePoint Designer 2013.
    The action Assign a task to user (Task outcome to Variable: Outcome |Task ID to Variable: TaskID) was used.
    The variable TaskID had a value something look like
    902aa0e9-0d58-47c0-a3ba-da96ebd47651, but I need ID from a task list.
    How to get the task list ID in SharePoint Designer Workflow?
    I am very grateful in advance for any help.
    bnossov

    I created dictionary and create two variables:
    Name: Accept; Type: string; Value:
     application/json;odata=verbose;
    Name: Content-Type ; Type: string; Value: application/json;odata=verbose;
    Output variable: JSonRequestHeader.
    I called HTTP web service:
    https://xxxxxx/_api/web/Lists/getbytitle('WorkflowTaskList')/items?$select=ID
    I used Count Items in Variables: JsonRequestHeader(Output to Variable: count)
    The output variable count had value equals 2.
    When I printed service url in browser it gave me xml with all the items ID in the
    WorkflowTaskList.  There were eight .
    How can I take data from web service and put them in dictionary?
    I would be grateful for any help.
    bnossov

  • How to get all the values from the dropdown menu

    How to get all the values from the dropdown menu
    I need to be able to extract all values from the dropdown menu; I know how to get all those values as a string, but I need to be able to access each item; (the value in a dropdown menu will change dynamically)
    How do I get number of item is selection dropdown?
    How do I extract a ?name? for each value, one by one?
    How do I change a selection by referring to particular index of the item in a dropdown menu?
    Here is the Path to dropdown menu that I'm trying to access (form contains number of similar dropdowns)
    RSWApp.om.GetElementByPath "window(index=0).form(id=""aspnetForm"" | action=""advancedsearch.aspx"" | index=0).formelement[SELECT](name=""ctl00$MainContent$hardwareBrand"" | id=""ctl00_MainContent_hardwareBrand"" | index=16)", element
    Message was edited by: testtest

    The findElement method allows various attributes to be used to search. Take the following two examples for the element below:
    <Select Name=ProdType ID=testProd>
    </Select>
    I can find the element based on its name or any other attribute, I just need to specify what I am looking for. To find it by name I would do the following:
    Set x = RSWApp.om.FindElement("ProdType","SELECT","Name")
    If I want to search by id I could do the following:
    Set x = RSWApp.om.FindElement("testProd","SELECT","ID")
    Usually you will use whatever is available. Since the select element has no name or ID on the Empirix home page, I used the onChange attribute. You can use any attribute as long as you specify which one you are using (last argument in these examples)
    You can use the FindElement to grab links, text boxes, etc.
    The next example grabs from a link on a page
    Home
    Set x = RSWApp.om.FindElement("Home","A","innerText")
    I hope this helps clear it up.

  • How to get the return values from a web page

    Hi all :
       how to get the return values from a web page ?  I mean how pass values betwen webflow and web page ?
    thank you very much
    Edited by: jingying Sony on Apr 15, 2010 6:15 AM
    Edited by: jingying Sony on Apr 15, 2010 6:18 AM

    Hi,
    What kind of web page do you have? Do you have possibility to for example make RFCs? Then you could trigger events (with parameters that could "return" the values) and the workflow could react to those events. For example your task can have terminating events.
    Regards,
    Karri

  • How to get warranty service claim from nokia c5-03...

    how to get warranty service claim from nokia c5-03 in india because i have problem with nokia c5-03 I Purchase 2 week ago a new nokia c5-03 but from day 1 i facing same problem like 1) app close itself 2) internet browse close if any thing is downloading or downloading over 3) memory full always then i should reboot the phone then it work. 4) ovi map is open it shows memory full close the app So kindly help me how to get warranty service claim from nokia c5-03 in india i am unhappy with nokia c5-03
    Solved!
    Go to Solution.

    i updated software also but the same problem cont... I want to know that nokia will give back money or exchange for other new mobile

  • For some reason the system is telling me my birth date is wrong when it's not and it won't let me proceed to reset my password. Can someone tell me how to get a "real" person from tech on line?

    For some reason the system is telling me my birth date is wrong when it's not and it won't let me proceed to reset my password. Can someone tell me how to get a "real" person from tech on line?

    contact itunes support

  • How to get the current week from sysdate?

    Hi sir,
    i want to know how to get the current week from sysdate?
    thanks

    Hi Nicolas
    It seems you like to check my post and also make commend ;) thanks for your attention
    Have you ever read the posts above and given solutions ?Yes, I did
    Have you read the docs ? Yes, I checked
    What's the added value here ?Did youYou shared doc with solution(long one), I shared short one which point same solution(Check what Joel posted)..So what is benefit, As you can guess oracle docs are sometimes become so complicated as specialy for beginner...(At least it was like that for me and Belive me somedocs are still sooo complicated even for oracle coworkers ) But for you I dont know ;)
    => Why writting the PS in bold ?Why.. Let me think... Ohh Maybe I am looking some questions(many) and even user get answer they should not changed status so I am reading some posts and try to get problem and loosing time..
    So I am putting that PS wiht BOLD because I dont wanna lose time my friend ;) Because While I am trying to help ppl here In same time I am trying to giving support to my customer prod systems. Which mean time is very important for me...
    Hope my answer could satisfy you..
    One important PS for you.. You may not like my posts (or someone) but my friend I become tired to read&answer and make commend to on your comment which is about my posts.
    I am not newbie in forum(At least I fell like that) and I belive I know how I should make post..
    Thank you
    Regards
    Helios

  • How to get the selection parameters from logical database into one of the t

    Hi Sap ABAP Champians,
    How to get the selection parameters from logical database into one of the tab in the tabstrip selection-screen.
    Please help me for this
    Thanks
    Basu

    Hi
    Thanks, that will work, but then I'll have to insert code into all my reports.
    I can see that "Application Server Control Console" is able to rerun a report.
    This must mean that the Report Server has access to the runtime parameters.
    But how?
    Cheers
    Nils Peter

Maybe you are looking for

  • Can I post GL Transactions with past net due date?

    Hi to all, Good day! My concern is regarding uploading and posting of GL transactions to SAP. Is it possible to post a document (GL Transactions) if the net due date is in the past? I am trying to upload and post GL Transactions but the batch input l

  • Trying to understand Java servers

    I have been trying to get an understanding of Java ServerSockets and have hit a dead-end here. This is just the first part of the server code and I can't see what the compiler does not like about this. The compiler dies and puts the arrow on the "a"

  • ITunes doesn't play through USB Soundcard

    Hi, I am using a USB soundcard because the headphone jack on my laptop is really scratchy. However, playback goes through my built-in soundcard and then to the speakers, rather than through my USB soundcard into my headphones. I've checked all system

  • Grizzled Veteran Wants To Learn This New-Fangled EE Stuff

    I'm not new to Java (10+ years intermittent), but I am new to Java EE development. I do not plan to take the Web Component Developer certification. I am just trying to make myself fluent with Java EE. I bought the Sierra/Bates "Head First" book on "S

  • Oracle Apps Roles and Responsibilities

    hi, i need to know the people who should be supporting the Oracle Applications after its implementation. Are there documents that list the specific roles and responsibilities? Thanks! Gladys