First of all sorry for my bad english i'm from denmark.
I'm new to java, so here is a rookie question:
I have created a netbank on my laptop and it runs perfectly on localhost. Now I have uploaded all the files to my
domainserver in a folder called: /blabla/final project
Then I have to change a URL which on localhost is like this:
userUrl2 = new URL("file:///C:/BlueJ/examples/final project/new_customer.html") ;
Do I change it to: userUrl2 = new URL("/blabla/final project/new_customer.html") ;
or what would the correct syntax look like?


