Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. afalnes

    Pcplus issue 155 java tutorial on missing links by David Griffiths

    Thanks for help .The error log lie deep in our minds. "How indigenous they may be,we all wonder who you are" [2thumbsup]
  2. afalnes

    Pcplus issue 155 java tutorial on missing links by David Griffiths

    Here is what I've done public String textBuffer; public String textBuffer; public void writeDiskCacheToFile(String docRoot,String address) { try { String path = docRoot + address; String dir = path.substring(0,path.lastIndexOf("/")); dir.replace('/'...
  3. afalnes

    Pcplus issue 155 java tutorial on missing links by David Griffiths

    The code below will compile,however during runtime IOException is thrown! void writeDiskCacheToFile(String Docroot,String address) throws IOException { String path = docroot + address; String dir = path.substring(0,path.lastIndexOf("/")); dir.replace('/', File.separatorChar); new...
  4. afalnes

    writing a cache or textbuffer to file

    To create a textbuffer (eg HTML page ) and write the URLcache to a file.The code is as follows: private void writeDiskCache(UrlCacheEntry uce) throws IOException { String path = docRoot + uce.url; String dir = path.substring(0, path.lastIndexOf("/")); dir.replace('/', File.separatorChar); new...
  5. afalnes

    Pcplus issue 155 java tutorial on missing links by David Griffiths

    To cache the whole content of the web-site "http://ece-www.colorado.edu/~bart/book/book/contents.htm", i've read through some ex in issue155 pcplus java tutorial.Seven - eight classes are utilized ()derived for streaming web-content or file directory HTML pages.THis suggest a possible use of...

Part and Inventory Search

Back
Top