Java tutorial
/* * Copyright (C) 2010-2101 Alibaba Group Holding Limited. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.alibaba.otter.shared.common.utils; import java.io.IOException; import java.util.List; import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringUtils; import org.testng.annotations.Test; import com.alibaba.otter.shared.common.BaseOtterTest; import com.alibaba.otter.shared.common.utils.compile.impl.JdkCompiler; public class JavaSourceCompilerTest extends BaseOtterTest { @Test public void testSimple() { String javasource = null; try { List<String> lines = IOUtils .readLines(Thread.currentThread().getContextClassLoader().getResourceAsStream("compiler.txt")); javasource = StringUtils.join(lines, "\n"); } catch (IOException e1) { e1.printStackTrace(); } JdkCompiler compiler = new JdkCompiler(); Class<?> clazz = compiler.compile(javasource); System.out.println(clazz.getName()); } }