Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.FileWriter;
- public class Card {
- public static void main( String[] args ) {
- try {
- FileWriter fw = new FileWriter( args[ 0 ] + "_" + args[ 1 ] + ".card" );
- fw.write( "<div class=\"vcard\">\n");
- fw.write( "\n" );
- fw.write( "a class=\"url fn\" href=\""+args[ 2 ]+"\">"+args[ 0 ] +" "+ args [ 1 ] +"</a>\n" );
- fw.write( "\n" );
- fw.write( "</div>" );
- fw.close();
- }
- catch( Exception e ) {
- System.out.println( e.getMessage() );
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment