Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.awt.datatransfer.DataFlavor;

public class Main {

    public static void main(String[] args) {

        try {
            DataFlavor df1 = new DataFlavor("text/plain; charset=ASCII");
        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }
}