📄 barcodetransform.java
字号:
/* * Copyright (c) 2004 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.webapp.barcode;import java.io.IOException;import java.io.Writer;import java.util.Map;import org.apache.avalon.framework.configuration.ConfigurationException;import org.krysalis.barcode4j.BarcodeException;import org.ofbiz.base.util.Debug;import freemarker.template.TemplateModelException;import freemarker.template.TemplateScalarModel;import freemarker.template.TemplateTransformModel;/** * BarcodeTransform - Freemarker Transform for Barcodes * * @author Bryce Ewing * @version 0.1 */public class BarcodeTransform implements TemplateTransformModel { public static final String module = BarcodeTransform.class.getName(); private static String getArg(Map args, String key) { String result = ""; Object o = args.get(key); if (o != null) { if (Debug.verboseOn()) Debug.logVerbose("Arg Object : " + o.getClass().getName(), module); if (o instanceof TemplateScalarModel) { TemplateScalarModel s = (TemplateScalarModel) o; try { result = s.getAsString(); } catch (TemplateModelException e) { Debug.logError(e, "Template Exception", module); } } else { result = o.toString(); } } return result; } public Writer getWriter(final Writer out, Map args) { final StringBuffer buf = new StringBuffer(); final String specification = getArg(args, "specification"); return new Writer(out) { public void write(char cbuf[], int off, int len) { buf.append(cbuf, off, len); } public void flush() throws IOException { out.flush(); } public void close() throws IOException { if (specification == null) throw new IOException("Barcode specification not given"); BarcodeGenerator generator = BarcodeFactory.getBarcodeGenerator(specification); if (generator == null) throw new IOException("Barcode generator creation failed"); try { out.write(generator.generateSvgXml(buf.toString())); } catch (BarcodeException e) { throw new IOException(e.toString()); } catch (ConfigurationException e) { throw new IOException(e.toString()); } } }; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -