package com.hello; import com.foo.Test; public class Main { public static void main(String... args) { // System.out.println("Hello, " + Test.getString()); Class k = null; try { k = Class.forName("com.foo.Test"); System.out.println("Test found!"); } catch (ClassNotFoundException e) { System.out.println("ClassNotFoundException " + e); } } }