hi frnds
using the above url iam running my project
how to run when i type my project in uppercase
like this url http://localhost/PROJECT
hi frnds
using the above url iam running my project
how to run when i type my project in uppercase
like this url http://localhost/PROJECT
URLs are case-sensitive, so do you want to change http://localhost/PROJECT into http://localhost/project ?
If so, the toLowerCase method in the String class will do it:
"http://localhost/PROJECT".toLowerCase();
"http://localhost/PROJECT".toLowerCase();
thnx for response
where can i place the above code ( i want to run for both cases)
That depends on your program! But I guess there's somewhere you have a String variable that you set from the user input, so you can use the toLowerCase on that immediately after reading it in, but before doing anything else with it.
hi iam providing project path in the xml file (configuration file)
how to do it in that...
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.