Java tutorial
package edu.emory.bmi.aiw.i2b2export.output; /* * #%L * i2b2 Export Service * %% * Copyright (C) 2013 Emory University * %% * 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. * #L% */ import edu.emory.bmi.aiw.i2b2export.entity.OutputConfigurationEntity; import java.io.BufferedWriter; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Collection; import org.apache.commons.io.IOUtils; import org.eurekaclinical.i2b2.client.pdo.Observer; /** * Output formatter for when each row represents a provider. * * @author Michel Mansour * @since 1.0 */ final class ProviderDataOutputFormatter { private final OutputConfigurationEntity config; private final Collection<Observer> providers; ProviderDataOutputFormatter(OutputConfigurationEntity config, Collection<Observer> providers) { this.config = config; this.providers = providers; } public void format(BufferedWriter writer) throws IOException { try { Class.forName("org.h2.Driver"); } catch (ClassNotFoundException ex) { throw new AssertionError("Error parsing i2b2 metadata: " + ex); } try (Connection con = DriverManager.getConnection("jdbc:h2:mem:ProviderDataOutputFormatter")) { for (Observer provider : this.providers) { new ProviderDataRowOutputFormatter(this.config, provider, con).format(writer); writer.write(IOUtils.LINE_SEPARATOR); } } catch (SQLException ex) { throw new IOException("Error parsing i2b2 metadata: " + ex.getMessage()); } } }