Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.net.URLDecoder;
import java.net.URLEncoder;

public class Main {
    public static void main(String[] args) throws Exception {
        String source = "index&^%*a test for 2.5% and  &";
        String encoded = URLEncoder.encode(source, "utf-8");
        String decoded = URLDecoder.decode(encoded, "utf-8");
        System.out.println("Source: " + source);
        System.out.println("Encoded: " + encoded);
        System.out.println("Decoded: " + decoded);

    }
}