Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.text.Html;

public class Main {
    static String httpDecode(String s) {
        s = s.replace("\r\n", "<br/>");
        return Html.fromHtml(s).toString();
    }
}