📄 mimetypeattribute.java
字号:
// MimeTypeAttribute.java// $Id: MimeTypeAttribute.java,v 1.4 2000/08/16 21:37:56 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources.upgrade ;import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.IOException;import org.w3c.www.mime.MimeType ;import org.w3c.www.mime.MimeTypeFormatException;/** * The generic class of Mime type attributes. */public class MimeTypeAttribute extends Attribute { /** * Is the given object a valid MimeTypeAttribute value ? * @param obj The object to test. * @return A boolean <strong>true</strong> if okay. */ public boolean checkValue(Object obj) { return (obj instanceof MimeType) || (obj == null) ; } /** * Get the number of bytes required to save that attribute value. * @param The value about to be pickled. * @return The number of bytes needed to pickle that value. */ public final int getPickleLength(Object value) { String str = ((MimeType) value).toString(); int strlen = str.length() ; int utflen = 0 ; for (int i = 0 ; i < strlen ; i++) { int c = str.charAt(i); if ((c >= 0x0001) && (c <= 0x007F)) { utflen++; } else if (c > 0x07FF) { utflen += 3; } else { utflen += 2; } } return utflen + 2 ; } /** * Pickle a MIME type to the given output stream. * @param out The output stream to pickle to. * @param obj The object to pickle. * @exception IOException If some IO error occured. */ public void pickle(DataOutputStream out, Object t) throws IOException { if (t == null) out.writeUTF("*none*"); else out.writeUTF(((MimeType) t).toString()) ; } /** * Unpickle a MIME type from the given input stream. * @param in The input stream to unpickle from. * @return An instance of String. * @exception IOException If some IO error occured. */ public Object unpickle (DataInputStream in) throws IOException { try { return new MimeType(in.readUTF()) ; } catch (MimeTypeFormatException ex) { return null;// throw new IOException("illegal MIME type.") ; } } public MimeTypeAttribute(String name, MimeType def, Integer flags) { super(name, def, flags) ; this.type = "org.w3c.www.mime.MimeType"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -