Search:

Type: Posts; User: copeg

Search: Search took 0.08 seconds.

  1. Re: how to transform an html file to a web site in java

    My bad...the correct syntax is toURL - which by chance is deprecated. (see File - toURL)). The work around is to convert to a URI then to a URL:



    java.net.URL helpURL = file.toURI().toURL();
  2. Re: how to transform an html file to a web site in java

    nasi, try using the method getURL() from the File class to feed into the setPage function.


    java.net.URL helpURL = file.getURL();//UpLoadListener.class.getResource( file.getPath());

    The...
  3. Re: how to transform an html file to a web site in java

    Unfortunately java SE lacks in this category. The JEditorPane has limited html capabilities, and there isn't another class in java SE that can do so. You'll have to a) use third party software such...
Results 1 to 3 of 3