Back again on the stage...

In case evrybody forgot me...
I'm Ivan a 25 years old student of physics in Milan (Italy).
I've spent the last month doing some exams, studing C++ and OWL.
Microsoft Press has invested some $$ in the bookstore I work for so 
my job in the last few month was to say:"this doesn't work, this 
could be done better. We don't like it etc.."
We changed our ISP and of course our server software. Now we are 
using IIS and Commerce.

For those reasons I've stopped to be a member of WC mailing list but 
now I'm back.

BTW Now I'll be obliged to replace my usual comments on MS with a NO 
COMMENT! :-)

If nothing is changed there shouldn't be here too many fans of MS 
servers (hi there, UNIX people) but in this occasion I hope somebody 
will share his/her knowledge on ASP, VBScript etc.. with me.

... and now come the question...

Does anybody know if there is a means to read and >process< the 
content of a remote page, using just the resource a browser can offer 
(JavaScript, VBScript...)?

I would like to do something like that... (of course from 
http://www.gorilla.it)

<script language="JavaScript">
<!--
framedWindow1=window.open("http://www.soltec.it","1",""); 
document.write(framedWindow1.document.links[1]);
// -->
</script>

But of course this is not possible.

another way could be

try
{
        InputStream in=theURL.openStream();
        DataInputStream data=new DataInputStream(new BufferInputStream(in));
        String line;
        while ((line=data.readLine())!=null)
        {
                System.out.println(line);
                //or any other thing
        }
}
catch(IOException e)
{
        //snip...
}

but I'm not a Java expert/fan so I would like to know if somebody 
know if this could work before writing and compiling anything or if 
there is another means.

Finnally does anybody know some good freeware developing tools for 
Java?


TIA
------------------------------------------------------------
Salve
Ivan Sergio Borgonovo - [EMAIL PROTECTED]
Gorilla Bookstore http://www.gorilla.it
------------------------------------------------------------

____________________________________________________________________
--------------------------------------------------------------------
 Join The Web Consultants Association :  Register on our web site Now
Web Consultants Web Site : http://just4u.com/webconsultants
If you lose the instructions All subscription/unsubscribing can be done
directly from our website for all our lists.
---------------------------------------------------------------------

Reply via email to