⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chunks.java

📁 介绍java核心技术的pio编程方法以及基本概念
💻 JAVA
字号:
/* ====================================================================   Licensed to the Apache Software Foundation (ASF) under one or more   contributor license agreements.  See the NOTICE file distributed with   this work for additional information regarding copyright ownership.   The ASF licenses this file to You 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 org.apache.poi.hsmf.datatypes;/** * Collection of convenence chunks for standard parts of the MSG file. *  * @author Travis Ferguson */public class Chunks {	/* String parts of Outlook Messages that are currently known */	public StringChunk messageClass = new StringChunk(0x001A);		//Type of message that the MSG represents (ie. IPM.Note)	public StringChunk textBodyChunk = new StringChunk(0x1000);		//BODY Chunk, for plain/text messages	public StringChunk subjectChunk = new StringChunk(0x0037);  	//Subject link chunk, in plain/text	public StringChunk displayToChunk = new StringChunk(0x0E04);	//Value that is in the TO field (not actually the addresses as they are stored in recip directory nodes	public StringChunk displayFromChunk = new StringChunk(0x0C1A);	//Value that is in the FROM field	public StringChunk displayCCChunk = new StringChunk(0x0E03);	//value that shows in the CC field	public StringChunk displayBCCChunk = new StringChunk(0x0E02);	//Value that shows in the BCC field	public StringChunk conversationTopic = new StringChunk(0x0070); //Sort of like the subject line, but without the RE: and FWD: parts.	public StringChunk sentByServerType = new StringChunk(0x0075);	//Type of server that the message originated from (SMTP, etc).		public static Chunks getInstance() {		return new Chunks();	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -