URL Encode Test : URL « Network Protocol « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Network Protocol » URLScreenshots 
URL Encode Test
    

import java.net.URLEncoder;

public class MainClass {

  public static void main(String args[]) {

    System.out.println(URLEncoder.encode("This string has spaces"));
    System.out.println(URLEncoder.encode("This*string*has*stars"));
    System.out.println(URLEncoder.encode("This%string%has%percent%signs"));
    System.out.println(URLEncoder.encode("This+string+has+pluses"));
    System.out.println(URLEncoder.encode("This/string/has/slashes"));
    System.out.println(URLEncoder.encode("This\"string\"has\"quote\"marks"));
    System.out.println(URLEncoder.encode("This:string:has:colons"));
    System.out.println(URLEncoder.encode("This.string.has.periods"));
    System.out.println(URLEncoder.encode("This=string=has=equals=signs"));
    System.out.println(URLEncoder.encode("This&string&has&ampersands"));

  }

}
           
         
    
    
    
  
Related examples in the same category
1. Creating a URL with a single string.
2. Creating a URL With components
3. Converting Between a Filename Path and a URL
4. URL Constructor Test
5. Get URL Content
6. Get URL Parts
7. Read from a URL
8. Convert a URL to a URI
9. Converting Between a URL and a URI
10. Convert an absolute URI to a URL
11. URL Equality
12. Parsing a URL
13. URL Request
14. URL Get
15. A URL Retrieval Example
16. URL Reader
17. URL Connection ReaderURL Connection Reader
18. Using URLConnection
19. Parse URLParse URL
20. Resolve a relative URL
21. sends e-mail using a mailto: URLsends e-mail using a mailto: URL
22. Convert the absolute URI to a URL object
23. Convert URI to URL
24. Get parts of a url
25. Checks, whether the URL uses a file based protocol.
26. Add Parameter to URL
27. Returns the anchor value of the given URL
28. Extracts the file name from the URL.
29. Creates a relative url by stripping the common parts of the the url.
30. Checks, whether the URL points to the same service. A service is equal if the protocol, host and port are equal.
31. Extracts the base URL from the given URL by stripping the query and anchor part.
32. Returns true if the URL represents a path, and false otherwise.
33. Parse Port
34. Parse Host
35. Given a URL check if its a jar url(jar:!/archive) and if it is, extract the archive entry into the given dest directory and return a file URL to its location
36. check the validity of url pattern according to the spec.
37. A collection of File, URL and filename utility methods
38. Build Relative URL Path
39. Checks that the protocol://host:port part of two URLs are equal
40. Create valid URL from a system id
41. Extract URL File Name
42. Extract the URL page name from the given path
43. Get Domain Name
44. Get Locale From String
45. Get URL Last Modified
46. Get the name of the parent of the given URL path
47. Get the parent of the given URL path
48. Has URLContent Changed
49. Is URL a local file
50. Normalize an URL
51. Normalizes an URL
52. Resolve a relative URL string against an absolute URL string
53. ResourceBundle String manager
54. Save URL contents to a file
55. URL Path: standardize the creation of mutation of path-like structures
56. Utility class for building URLs
57. Add Default Port to a URL If Missing
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.