Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String getVCard(String dcIdentityStr) {
        if (dcIdentityStr == null || "".equals(dcIdentityStr.trim()))
            return (null);

        // If the identity is already a vcard, return it as is.
        if (dcIdentityStr.trim().startsWith("BEGIN:VCARD"))
            return (dcIdentityStr.trim());

        // Otherwise, create a simple vcard with only the FN field.
        StringBuilder str = new StringBuilder();
        str.append("BEGIN:VCARD\n");
        str.append("VERSION:3.0\n");
        str.append("FN:" + dcIdentityStr);
        str.append("END:VCARD");
        return (str.toString());
    }
}