- 浏览: 345207 次
- 性别:
- 来自: 厦门
文章分类
最新评论
-
弦月001:
我目前也是碰到这样的情况,在jsp里面没有问题,但在free ...
Spring+Freemarker(国际化) -
laj12347:
zhangsw_00 写道我参照你的方法,配置环境,在jsp文 ...
Spring+Freemarker(国际化) -
yctan:
hi,能不能把发送邮件的代码也贴一下啊。
用webdav协议访问exchange邮件服务器,下载附件的问题 -
maketc:
楼上正解,这个问题也被郁闷了半天,试过重启tomcat、ecl ...
Tomcat 部署 Could not copy all resources to 或者Undeployment Failure could not be re -
masuweng:
楼上正解,这个问题曾被郁闷了半天
Tomcat 部署 Could not copy all resources to 或者Undeployment Failure could not be re
前几天用webdav 访问exchange邮件服务器,一般的操作都完成,可是要下载邮件的附件就没有相关的方法或类来完成操作,在网上找了很久也没找到,后来自己看了看源码,自己从新继承写了下,就可以完成从exchange上下载附件的功能。发上来有能用上提供的帮助,大家也可以有机会讨论。
webdav.java
/**
* Created by IntelliJ IDEA.
* User: zkx
* Date: 2006-8-14
* Time: 9:34:29
* To change this template use File | Settings | File Templates.
*/
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpURL;
import org.apache.commons.httpclient.NTCredentials;
import org.apache.commons.httpclient.HttpClient;
import org.apache.webdav.lib.Property;
import org.apache.webdav.lib.ResponseEntity;
import org.apache.webdav.lib.WebdavResource;
import org.apache.webdav.lib.methods.DepthSupport;
import org.apache.webdav.lib.methods.PropFindMethod;
import org.apache.webdav.lib.methods.attFindMethod;
import org.w3c.dom.NodeList;
import java.util.Vector;
import java.io.IOException;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.net.MalformedURLException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class webdav {
public static String userName="5";
public static String password="5";
public static String hostAdd="192.168.1.45";
public static String domain ="local";
public static String inbox = "http://192.168.1.45/exchange/5/Inbox/";
public static Vector properties;
static {
properties = new Vector();
properties.addElement("DAV:autoversion");
properties.addElement("DAV:contentclass");
properties.addElement("DAV:creationdate");
properties.addElement("DAV:displayname");
properties.addElement("DAV:getcontentlength");
properties.addElement("DAV:getcontenttype");
properties.addElement("DAV:getetag");
properties.addElement("DAV:getlastmodified");
properties.addElement("DAV:href");
properties.addElement("DAV:id");
properties.addElement("DAV:iscollection");
properties.addElement("DAV:isfolder");
properties.addElement("DAV:ishidden");
properties.addElement("DAV:isreadonly");
properties.addElement("DAV:isstructureddocument");
properties.addElement("DAV:isversioned");
properties.addElement("DAV:lockdiscovery");
properties.addElement("DAV:parentname");
properties.addElement("DAV:resourcetype");
properties.addElement("DAV:revisionid");
properties.addElement("DAV:revisionlabel");
properties.addElement("DAV:revisionuri");
properties.addElement("DAV:supportedlock");
properties.addElement("DAV:uid");
properties.addElement("DAV:resourcetype");
properties.addElement("DAV:vresourceid");
properties.addElement("urn:schemas:httpmail:date");
properties.addElement("urn:schemas:httpmail:datereceived");
properties.addElement("urn:schemas:httpmail:displaycc");
properties.addElement("urn:schemas:httpmail:displayto");
properties.addElement("urn:schemas:httpmail:from");
properties.addElement("urn:schemas:httpmail:fromemail");
properties.addElement("urn:schemas:httpmail:fromname");
properties.addElement("urn:schemas:httpmail:hasattachment");
properties.addElement("urn:schemas:httpmail:htmldescription");
properties.addElement("urn:schemas:httpmail:importance");
properties.addElement("urn:schemas:httpmail:normalizedsubject");
properties.addElement("urn:schemas:httpmail:read");
properties.addElement("urn:schemas:httpmail:sendername");
properties.addElement("urn:schemas:httpmail:subject");
properties.addElement("urn:schemas:httpmail:submitted");
properties.addElement("urn:schemas:httpmail:textdescription");
properties.addElement("urn:schemas:httpmail:thread-topic");
properties.addElement("urn:schemas:httpmail:to");
properties.addElement("urn:schemas:mailheader:content-class");
properties.addElement("urn:schemas:mailheader:date");
properties.addElement("urn:schemas:mailheader:from");
properties.addElement("urn:schemas:mailheader:message-id");
properties.addElement("urn:schemas:mailheader:received");
properties.addElement("urn:schemas:mailheader:subject");
properties.addElement("urn:schemas:mailheader:thread-index");
properties.addElement("urn:schemas:mailheader:thread-topic");
properties.addElement("urn:schemas:mailheader:to");
properties.addElement("urn:schemas:mailheader:xref");
properties.addElement("urn:schemas:mailheader:x-unsent");
properties.addElement("urn:schemas:mailheader:x-mailer");
properties.addElement("x-mimeole");
properties.addElement("urn:schemas:mailheader:x-catchall");
properties.addElement("urn:schemas:mailheader:x-ms-has-attach");
properties.addElement("urn:schemas:mailheader:content-disposition");
}
public static void main(String args[])
{
try{
NTCredentials creds = new NTCredentials(userName, password, hostAdd,domain);
HttpURL host = new HttpURL(inbox);
SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss:SSS");
Date beginDate = new Date();
System.out.println("beginDate="+bartDateFormat.format(beginDate));
WebdavResource wdr = new WebdavResource(host,creds, WebdavResource.ALL, DepthSupport.DEPTH_INFINITY);
Date endDate = new Date();
System.out.println("endDate="+bartDateFormat.format(endDate));
HttpClient client=wdr.retrieveSessionInstance();
PropFindMethod method = new PropFindMethod(inbox,Integer.MAX_VALUE,properties.elements());
int status = client.executeMethod(method);
java.util.Enumeration responses = method.getResponses();
Date processDate = new Date();
System.out.println("processDate="+bartDateFormat.format(processDate));
while (responses.hasMoreElements()){
ResponseEntity response = (ResponseEntity)responses.nextElement();
java.util.Enumeration properties1 = response.getProperties();
String mailName="";
while (properties1.hasMoreElements()) {
Property property = (Property)properties1.nextElement();
System.out.println("name="+property.getName() + " type ="+ property.getLocalName() + " = content value= " + property.getPropertyAsString() +"=status code="+ property.getStatusCode());
if(property.getLocalName().equals("displayname") )
{
mailName=property.getPropertyAsString();
System.out.println("mailName="+mailName);
}
if(property.getLocalName().equals("hasattachment")&&property.getPropertyAsString().equals("1") )
{
System.out.println("attachment="+inbox+mailName);
fetchAttachment(inbox+mailName);
}
}
System.out.println("--------------------------------------------------------");
}
}catch(MalformedURLException mue)
{
mue.printStackTrace();
}
catch(HttpException he)
{
he.printStackTrace();
}
catch(IOException ioe)
{
ioe.printStackTrace();
}
catch(Exception e)
{
e.printStackTrace();
}
}
protected static void fetchAttachment(String attPath) throws Exception
{
System.out.println("attPath="+attPath);
try
{
NTCredentials creds = new NTCredentials(userName, password, hostAdd,domain);
HttpURL host = new HttpURL(attPath);
WebdavResource wdr = new WebdavResource(host,creds, WebdavResource.ALL, DepthSupport.DEPTH_0);
org.apache.commons.httpclient.HttpClient client=wdr.retrieveSessionInstance();
java.util.Vector vproperties= new java.util.Vector();
vproperties.addElement("urn:schemas:httpmail:attachmentfilename");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x0E210003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x3716001F");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x37140003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x3713001F");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x370E001F");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x370B0003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x37050003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x3704001F");
attFindMethod method = new attFindMethod(attPath,Integer.MAX_VALUE,vproperties.elements());
int status = client.executeMethod(method);
java.util.Enumeration responses = method.getResponses();
System.out.println("============================================");
while (responses.hasMoreElements()){
ResponseEntity response = (ResponseEntity)responses.nextElement();
java.util.Enumeration properties1 = response.getProperties();
while (properties1.hasMoreElements()) {
Property property = (Property)properties1.nextElement();
System.out.println("name="+property.getName() + " type ="+ property.getLocalName() + " = content value= " + property.getPropertyAsString() +"=status code="+ property.getStatusCode());
String attName="";
if(property.getLocalName().equals("attachmentfilename"))
{
attName = property.getPropertyAsString();
NTCredentials creds1 = new NTCredentials(userName, password, hostAdd,domain);
HttpURL host1 = new HttpURL(attPath+"/"+attName);
WebdavResource wdr1 = new WebdavResource(host1,creds1, WebdavResource.ALL, DepthSupport.DEPTH_0);
File f= new File(attName);
boolean bool=wdr1.getMethod(f) ;
System.out.println("bool="+bool);
}
}
}
System.out.println("============================================");
}
catch(MalformedURLException mue)
{
mue.printStackTrace();
}
catch(HttpException he)
{
he.printStackTrace();
}
catch(IOException ioe)
{
ioe.printStackTrace();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
}
attFindMethod.java
/*
* $Header: /home/cvs/jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/methods/PropFindMethod.java,v 1.7 2004/08/02 15:45:48 unico Exp $
* $Revision: 1.7 $
* $Date: 2004/08/02 15:45:48 $
*
* ====================================================================
*
* Copyright 1999-2002 The Apache Software Foundation
*
* 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 org.apache.webdav.lib.methods;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Vector;
import org.apache.commons.httpclient.HttpConnection;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpState;
import org.apache.webdav.lib.PropertyName;
import org.apache.webdav.lib.util.XMLPrinter;
/**
* This class implements the WebDAV PROPFIND Method.
*
* <P> The PROPFIND method retrieves properties defined on the resource
* identified by the Request-URI, if the resource does not have any internal
* members, or on the resource identified by the Request-URI and potentially
* its member resources, if the resource is a collection that has internal
* member URIs.
*
* <P> A typical request looks like this:
*
* <PRE>
*
* PROPFIND /file HTTP/1.1
* Host: www.foo.bar
* Content-type: text/xml; charset="utf-8"
* Content-Length: xxxx
*
* <?xml version="1.0" encoding="utf-8" ?>
* <D:propfind xmlns:D="DAV:">
* <D:prop xmlns:R="http://www.foo.bar/boxschema/">
* <R:bigbox/>
* <R:author/>
* <R:DingALing/>
* <R:Random/>
* </D:prop>
* </D:propfind>
* </PRE>
*
*/
public class attFindMethod extends XMLResponseMethodBase
implements DepthSupport {
// -------------------------------------------------------------- Constants
/**
* Request of named properties.
*/
public static final int BY_NAME = 0;
/**
* Request of all properties name and value.
*/
public static final int ALL = 1;
/**
* Request of all properties name.
*/
public static final int NAMES = 2;
// ----------------------------------------------------------- Constructors
/**
* Method constructor.
*/
public attFindMethod() {
}
/**
* Method constructor.
*/
public attFindMethod(String path) {
super(path);
}
/**
* Method constructor.
*/
public attFindMethod(String path, int depth) {
this(path);
setDepth(depth);
}
/**
* Method constructor.
*/
public attFindMethod(String path, int depth, int type) {
this(path);
setDepth(depth);
setType(type);
}
/**
* Method constructor.
*/
public attFindMethod(String path, Enumeration propertyNames) {
this(path);
setDepth(1);
setPropertyNames(propertyNames);
setType(BY_NAME);
}
/**
* Method constructor.
*/
public attFindMethod(String path, int depth, Enumeration propertyNames) {
this(path);
setDepth(depth);
setPropertyNames(propertyNames);
setType(BY_NAME);
}
// ----------------------------------------------------- Instance Variables
/**
* Type of the Propfind.
*/
protected int type = ALL;
/**
* Property name list.
*/
protected PropertyName[] propertyNames;
/**
* Depth.
*/
protected int depth = DEPTH_INFINITY;
/**
* The namespace abbreviation that prefixes DAV tags
*/
protected String prefix = null;
// ------------------------------------------------------------- Properties
/**
* Set a request header value, redirecting the special case of the "Depth" header
* to invoke {@link #setDepth} instead.
*
* @param headerName Header name
* @param headerValue Header value
*/
public void setRequestHeader(String headerName, String headerValue) {
if (headerName.equalsIgnoreCase("Depth")){
int depth = -1;
if (headerValue.equals("0")){
depth = DEPTH_0;
}
else if (headerValue.equals("1")){
depth = DEPTH_1;
}
else if (headerValue.equalsIgnoreCase("infinity")){
depth = DEPTH_INFINITY;
}
setDepth(depth);
}
else{
super.setRequestHeader(headerName, headerValue);
}
}
/**
* Type setter.
*
* @param type New type value
*/
public void setType(int type) {
checkNotUsed();
this.type = type;
}
/**
* Type getter.
*
* @return int type value
*/
public int getType() {
return type;
}
/**
* Depth setter.
*
* @param depth New depth value
*/
public void setDepth(int depth) {
checkNotUsed();
this.depth = depth;
}
/**
* Depth getter.
*
* @return int depth value
*/
public int getDepth() {
return depth;
}
/**
* Property names setter.
* The enumeration may contain strings with or without a namespace prefix
* but the preferred way is to provide PropertyName objects.
*
* @param propertyNames List of the property names
*/
public void setPropertyNames(Enumeration propertyNames) {
checkNotUsed();
Vector list = new Vector();
while (propertyNames.hasMoreElements()) {
Object item = propertyNames.nextElement();
if (item instanceof PropertyName)
{
list.add(item);
}
else if (item instanceof String)
{
String propertyName = (String) item;
int length = propertyName.length();
boolean found = false;
int i = 1;
while (!found && (i <= length)) {
char chr = propertyName.charAt(length - i);
if (!Character.isUnicodeIdentifierPart(chr)
&& chr!='-' && chr!='_' && chr!='.') {
found = true;
} else {
i++;
}
}
if ((i == 1) || (i >= length)) {
list.add(new PropertyName("DAV:",propertyName));
} else {
String namespace = propertyName.substring(0, length + 1 - i);
String localName = propertyName.substring(length + 1 - i);
list.add(new PropertyName(namespace,localName));
}
}
else
{
// unknown type
// ignore
}
}
this.propertyNames = (PropertyName[])list.toArray(new PropertyName[list.size()]);
}
// --------------------------------------------------- WebdavMethod Methods
public void recycle() {
super.recycle();
prefix = null;
}
public String getName() {
return "X-MS-ENUMATTS";
}
/**
* Generate additional headers needed by the request.
*
* @param state State token
* @param conn The connection being used to make the request.
*/
public void addRequestHeaders(HttpState state, HttpConnection conn)
throws IOException, HttpException {
// set the default utf-8 encoding, if not already present
if (getRequestHeader("Content-Type") == null ) super.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
super.addRequestHeaders(state, conn);
switch (depth) {
case DEPTH_0:
super.setRequestHeader("Depth", "0");
break;
case DEPTH_1:
super.setRequestHeader("Depth", "1");
break;
case DEPTH_INFINITY:
super.setRequestHeader("Depth", "infinity");
break;
}
}
/**
* DAV requests that contain a body must override this function to
* generate that body.
*
* <p>The default behavior simply returns an empty body.</p>
*/
public String generateRequestBody() {
XMLPrinter printer = new XMLPrinter();
printer.writeXMLHeader();
printer.writeElement("D", "DAV:", "PROPFIND",
XMLPrinter.OPENING);
switch (type) {
case ALL:
printer.writeElement("D", "allprop", XMLPrinter.NO_CONTENT);
break;
case NAMES:
printer.writeElement("D", "propname", XMLPrinter.NO_CONTENT);
break;
case BY_NAME:
printer.writeElement("D", "prop", XMLPrinter.OPENING);
for (int i=0 ; i<propertyNames.length ; i++)
{
String namespace = propertyNames[i].getNamespaceURI();
String localname = propertyNames[i].getLocalName();
if ("DAV:".equals(namespace)) {
printer.writeElement("D", localname, XMLPrinter.NO_CONTENT);
} else {
if (namespace.length() > 0) {
printer.writeElement("ZZ", namespace, localname,
XMLPrinter.NO_CONTENT);
} else {
printer.writeElement(null, null, localname,
XMLPrinter.NO_CONTENT);
}
}
}
printer.writeElement("D", "prop", XMLPrinter.CLOSING);
break;
}
printer.writeElement("D", "PROPFIND", XMLPrinter.CLOSING);
return printer.toString();
}
/**
* This method returns an enumeration of URL paths. If the attFindMethod
* was sent to the URL of a collection, then there will be multiple URLs.
* The URLs are picked out of the <code><D:href></code> elements
* of the response.
*
* @return an enumeration of URL paths as Strings
*/
public Enumeration getAllResponseURLs() {
checkUsed();
return getResponseURLs().elements();
}
/**
* Returns an enumeration of <code>Property</code> objects.
*/
public Enumeration getResponseProperties(String urlPath) {
checkUsed();
Response response = (Response) getResponseHashtable().get(urlPath);
if (response != null) {
return response.getProperties();
} else {
return (new Vector()).elements();
}
}
}
webdav.java
/**
* Created by IntelliJ IDEA.
* User: zkx
* Date: 2006-8-14
* Time: 9:34:29
* To change this template use File | Settings | File Templates.
*/
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpURL;
import org.apache.commons.httpclient.NTCredentials;
import org.apache.commons.httpclient.HttpClient;
import org.apache.webdav.lib.Property;
import org.apache.webdav.lib.ResponseEntity;
import org.apache.webdav.lib.WebdavResource;
import org.apache.webdav.lib.methods.DepthSupport;
import org.apache.webdav.lib.methods.PropFindMethod;
import org.apache.webdav.lib.methods.attFindMethod;
import org.w3c.dom.NodeList;
import java.util.Vector;
import java.io.IOException;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.net.MalformedURLException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class webdav {
public static String userName="5";
public static String password="5";
public static String hostAdd="192.168.1.45";
public static String domain ="local";
public static String inbox = "http://192.168.1.45/exchange/5/Inbox/";
public static Vector properties;
static {
properties = new Vector();
properties.addElement("DAV:autoversion");
properties.addElement("DAV:contentclass");
properties.addElement("DAV:creationdate");
properties.addElement("DAV:displayname");
properties.addElement("DAV:getcontentlength");
properties.addElement("DAV:getcontenttype");
properties.addElement("DAV:getetag");
properties.addElement("DAV:getlastmodified");
properties.addElement("DAV:href");
properties.addElement("DAV:id");
properties.addElement("DAV:iscollection");
properties.addElement("DAV:isfolder");
properties.addElement("DAV:ishidden");
properties.addElement("DAV:isreadonly");
properties.addElement("DAV:isstructureddocument");
properties.addElement("DAV:isversioned");
properties.addElement("DAV:lockdiscovery");
properties.addElement("DAV:parentname");
properties.addElement("DAV:resourcetype");
properties.addElement("DAV:revisionid");
properties.addElement("DAV:revisionlabel");
properties.addElement("DAV:revisionuri");
properties.addElement("DAV:supportedlock");
properties.addElement("DAV:uid");
properties.addElement("DAV:resourcetype");
properties.addElement("DAV:vresourceid");
properties.addElement("urn:schemas:httpmail:date");
properties.addElement("urn:schemas:httpmail:datereceived");
properties.addElement("urn:schemas:httpmail:displaycc");
properties.addElement("urn:schemas:httpmail:displayto");
properties.addElement("urn:schemas:httpmail:from");
properties.addElement("urn:schemas:httpmail:fromemail");
properties.addElement("urn:schemas:httpmail:fromname");
properties.addElement("urn:schemas:httpmail:hasattachment");
properties.addElement("urn:schemas:httpmail:htmldescription");
properties.addElement("urn:schemas:httpmail:importance");
properties.addElement("urn:schemas:httpmail:normalizedsubject");
properties.addElement("urn:schemas:httpmail:read");
properties.addElement("urn:schemas:httpmail:sendername");
properties.addElement("urn:schemas:httpmail:subject");
properties.addElement("urn:schemas:httpmail:submitted");
properties.addElement("urn:schemas:httpmail:textdescription");
properties.addElement("urn:schemas:httpmail:thread-topic");
properties.addElement("urn:schemas:httpmail:to");
properties.addElement("urn:schemas:mailheader:content-class");
properties.addElement("urn:schemas:mailheader:date");
properties.addElement("urn:schemas:mailheader:from");
properties.addElement("urn:schemas:mailheader:message-id");
properties.addElement("urn:schemas:mailheader:received");
properties.addElement("urn:schemas:mailheader:subject");
properties.addElement("urn:schemas:mailheader:thread-index");
properties.addElement("urn:schemas:mailheader:thread-topic");
properties.addElement("urn:schemas:mailheader:to");
properties.addElement("urn:schemas:mailheader:xref");
properties.addElement("urn:schemas:mailheader:x-unsent");
properties.addElement("urn:schemas:mailheader:x-mailer");
properties.addElement("x-mimeole");
properties.addElement("urn:schemas:mailheader:x-catchall");
properties.addElement("urn:schemas:mailheader:x-ms-has-attach");
properties.addElement("urn:schemas:mailheader:content-disposition");
}
public static void main(String args[])
{
try{
NTCredentials creds = new NTCredentials(userName, password, hostAdd,domain);
HttpURL host = new HttpURL(inbox);
SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss:SSS");
Date beginDate = new Date();
System.out.println("beginDate="+bartDateFormat.format(beginDate));
WebdavResource wdr = new WebdavResource(host,creds, WebdavResource.ALL, DepthSupport.DEPTH_INFINITY);
Date endDate = new Date();
System.out.println("endDate="+bartDateFormat.format(endDate));
HttpClient client=wdr.retrieveSessionInstance();
PropFindMethod method = new PropFindMethod(inbox,Integer.MAX_VALUE,properties.elements());
int status = client.executeMethod(method);
java.util.Enumeration responses = method.getResponses();
Date processDate = new Date();
System.out.println("processDate="+bartDateFormat.format(processDate));
while (responses.hasMoreElements()){
ResponseEntity response = (ResponseEntity)responses.nextElement();
java.util.Enumeration properties1 = response.getProperties();
String mailName="";
while (properties1.hasMoreElements()) {
Property property = (Property)properties1.nextElement();
System.out.println("name="+property.getName() + " type ="+ property.getLocalName() + " = content value= " + property.getPropertyAsString() +"=status code="+ property.getStatusCode());
if(property.getLocalName().equals("displayname") )
{
mailName=property.getPropertyAsString();
System.out.println("mailName="+mailName);
}
if(property.getLocalName().equals("hasattachment")&&property.getPropertyAsString().equals("1") )
{
System.out.println("attachment="+inbox+mailName);
fetchAttachment(inbox+mailName);
}
}
System.out.println("--------------------------------------------------------");
}
}catch(MalformedURLException mue)
{
mue.printStackTrace();
}
catch(HttpException he)
{
he.printStackTrace();
}
catch(IOException ioe)
{
ioe.printStackTrace();
}
catch(Exception e)
{
e.printStackTrace();
}
}
protected static void fetchAttachment(String attPath) throws Exception
{
System.out.println("attPath="+attPath);
try
{
NTCredentials creds = new NTCredentials(userName, password, hostAdd,domain);
HttpURL host = new HttpURL(attPath);
WebdavResource wdr = new WebdavResource(host,creds, WebdavResource.ALL, DepthSupport.DEPTH_0);
org.apache.commons.httpclient.HttpClient client=wdr.retrieveSessionInstance();
java.util.Vector vproperties= new java.util.Vector();
vproperties.addElement("urn:schemas:httpmail:attachmentfilename");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x0E210003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x3716001F");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x37140003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x3713001F");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x370E001F");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x370B0003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x37050003");
vproperties.addElement("http://schemas.microsoft.com/mapi/proptag/x3704001F");
attFindMethod method = new attFindMethod(attPath,Integer.MAX_VALUE,vproperties.elements());
int status = client.executeMethod(method);
java.util.Enumeration responses = method.getResponses();
System.out.println("============================================");
while (responses.hasMoreElements()){
ResponseEntity response = (ResponseEntity)responses.nextElement();
java.util.Enumeration properties1 = response.getProperties();
while (properties1.hasMoreElements()) {
Property property = (Property)properties1.nextElement();
System.out.println("name="+property.getName() + " type ="+ property.getLocalName() + " = content value= " + property.getPropertyAsString() +"=status code="+ property.getStatusCode());
String attName="";
if(property.getLocalName().equals("attachmentfilename"))
{
attName = property.getPropertyAsString();
NTCredentials creds1 = new NTCredentials(userName, password, hostAdd,domain);
HttpURL host1 = new HttpURL(attPath+"/"+attName);
WebdavResource wdr1 = new WebdavResource(host1,creds1, WebdavResource.ALL, DepthSupport.DEPTH_0);
File f= new File(attName);
boolean bool=wdr1.getMethod(f) ;
System.out.println("bool="+bool);
}
}
}
System.out.println("============================================");
}
catch(MalformedURLException mue)
{
mue.printStackTrace();
}
catch(HttpException he)
{
he.printStackTrace();
}
catch(IOException ioe)
{
ioe.printStackTrace();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
}
attFindMethod.java
/*
* $Header: /home/cvs/jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/methods/PropFindMethod.java,v 1.7 2004/08/02 15:45:48 unico Exp $
* $Revision: 1.7 $
* $Date: 2004/08/02 15:45:48 $
*
* ====================================================================
*
* Copyright 1999-2002 The Apache Software Foundation
*
* 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 org.apache.webdav.lib.methods;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Vector;
import org.apache.commons.httpclient.HttpConnection;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpState;
import org.apache.webdav.lib.PropertyName;
import org.apache.webdav.lib.util.XMLPrinter;
/**
* This class implements the WebDAV PROPFIND Method.
*
* <P> The PROPFIND method retrieves properties defined on the resource
* identified by the Request-URI, if the resource does not have any internal
* members, or on the resource identified by the Request-URI and potentially
* its member resources, if the resource is a collection that has internal
* member URIs.
*
* <P> A typical request looks like this:
*
* <PRE>
*
* PROPFIND /file HTTP/1.1
* Host: www.foo.bar
* Content-type: text/xml; charset="utf-8"
* Content-Length: xxxx
*
* <?xml version="1.0" encoding="utf-8" ?>
* <D:propfind xmlns:D="DAV:">
* <D:prop xmlns:R="http://www.foo.bar/boxschema/">
* <R:bigbox/>
* <R:author/>
* <R:DingALing/>
* <R:Random/>
* </D:prop>
* </D:propfind>
* </PRE>
*
*/
public class attFindMethod extends XMLResponseMethodBase
implements DepthSupport {
// -------------------------------------------------------------- Constants
/**
* Request of named properties.
*/
public static final int BY_NAME = 0;
/**
* Request of all properties name and value.
*/
public static final int ALL = 1;
/**
* Request of all properties name.
*/
public static final int NAMES = 2;
// ----------------------------------------------------------- Constructors
/**
* Method constructor.
*/
public attFindMethod() {
}
/**
* Method constructor.
*/
public attFindMethod(String path) {
super(path);
}
/**
* Method constructor.
*/
public attFindMethod(String path, int depth) {
this(path);
setDepth(depth);
}
/**
* Method constructor.
*/
public attFindMethod(String path, int depth, int type) {
this(path);
setDepth(depth);
setType(type);
}
/**
* Method constructor.
*/
public attFindMethod(String path, Enumeration propertyNames) {
this(path);
setDepth(1);
setPropertyNames(propertyNames);
setType(BY_NAME);
}
/**
* Method constructor.
*/
public attFindMethod(String path, int depth, Enumeration propertyNames) {
this(path);
setDepth(depth);
setPropertyNames(propertyNames);
setType(BY_NAME);
}
// ----------------------------------------------------- Instance Variables
/**
* Type of the Propfind.
*/
protected int type = ALL;
/**
* Property name list.
*/
protected PropertyName[] propertyNames;
/**
* Depth.
*/
protected int depth = DEPTH_INFINITY;
/**
* The namespace abbreviation that prefixes DAV tags
*/
protected String prefix = null;
// ------------------------------------------------------------- Properties
/**
* Set a request header value, redirecting the special case of the "Depth" header
* to invoke {@link #setDepth} instead.
*
* @param headerName Header name
* @param headerValue Header value
*/
public void setRequestHeader(String headerName, String headerValue) {
if (headerName.equalsIgnoreCase("Depth")){
int depth = -1;
if (headerValue.equals("0")){
depth = DEPTH_0;
}
else if (headerValue.equals("1")){
depth = DEPTH_1;
}
else if (headerValue.equalsIgnoreCase("infinity")){
depth = DEPTH_INFINITY;
}
setDepth(depth);
}
else{
super.setRequestHeader(headerName, headerValue);
}
}
/**
* Type setter.
*
* @param type New type value
*/
public void setType(int type) {
checkNotUsed();
this.type = type;
}
/**
* Type getter.
*
* @return int type value
*/
public int getType() {
return type;
}
/**
* Depth setter.
*
* @param depth New depth value
*/
public void setDepth(int depth) {
checkNotUsed();
this.depth = depth;
}
/**
* Depth getter.
*
* @return int depth value
*/
public int getDepth() {
return depth;
}
/**
* Property names setter.
* The enumeration may contain strings with or without a namespace prefix
* but the preferred way is to provide PropertyName objects.
*
* @param propertyNames List of the property names
*/
public void setPropertyNames(Enumeration propertyNames) {
checkNotUsed();
Vector list = new Vector();
while (propertyNames.hasMoreElements()) {
Object item = propertyNames.nextElement();
if (item instanceof PropertyName)
{
list.add(item);
}
else if (item instanceof String)
{
String propertyName = (String) item;
int length = propertyName.length();
boolean found = false;
int i = 1;
while (!found && (i <= length)) {
char chr = propertyName.charAt(length - i);
if (!Character.isUnicodeIdentifierPart(chr)
&& chr!='-' && chr!='_' && chr!='.') {
found = true;
} else {
i++;
}
}
if ((i == 1) || (i >= length)) {
list.add(new PropertyName("DAV:",propertyName));
} else {
String namespace = propertyName.substring(0, length + 1 - i);
String localName = propertyName.substring(length + 1 - i);
list.add(new PropertyName(namespace,localName));
}
}
else
{
// unknown type
// ignore
}
}
this.propertyNames = (PropertyName[])list.toArray(new PropertyName[list.size()]);
}
// --------------------------------------------------- WebdavMethod Methods
public void recycle() {
super.recycle();
prefix = null;
}
public String getName() {
return "X-MS-ENUMATTS";
}
/**
* Generate additional headers needed by the request.
*
* @param state State token
* @param conn The connection being used to make the request.
*/
public void addRequestHeaders(HttpState state, HttpConnection conn)
throws IOException, HttpException {
// set the default utf-8 encoding, if not already present
if (getRequestHeader("Content-Type") == null ) super.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
super.addRequestHeaders(state, conn);
switch (depth) {
case DEPTH_0:
super.setRequestHeader("Depth", "0");
break;
case DEPTH_1:
super.setRequestHeader("Depth", "1");
break;
case DEPTH_INFINITY:
super.setRequestHeader("Depth", "infinity");
break;
}
}
/**
* DAV requests that contain a body must override this function to
* generate that body.
*
* <p>The default behavior simply returns an empty body.</p>
*/
public String generateRequestBody() {
XMLPrinter printer = new XMLPrinter();
printer.writeXMLHeader();
printer.writeElement("D", "DAV:", "PROPFIND",
XMLPrinter.OPENING);
switch (type) {
case ALL:
printer.writeElement("D", "allprop", XMLPrinter.NO_CONTENT);
break;
case NAMES:
printer.writeElement("D", "propname", XMLPrinter.NO_CONTENT);
break;
case BY_NAME:
printer.writeElement("D", "prop", XMLPrinter.OPENING);
for (int i=0 ; i<propertyNames.length ; i++)
{
String namespace = propertyNames[i].getNamespaceURI();
String localname = propertyNames[i].getLocalName();
if ("DAV:".equals(namespace)) {
printer.writeElement("D", localname, XMLPrinter.NO_CONTENT);
} else {
if (namespace.length() > 0) {
printer.writeElement("ZZ", namespace, localname,
XMLPrinter.NO_CONTENT);
} else {
printer.writeElement(null, null, localname,
XMLPrinter.NO_CONTENT);
}
}
}
printer.writeElement("D", "prop", XMLPrinter.CLOSING);
break;
}
printer.writeElement("D", "PROPFIND", XMLPrinter.CLOSING);
return printer.toString();
}
/**
* This method returns an enumeration of URL paths. If the attFindMethod
* was sent to the URL of a collection, then there will be multiple URLs.
* The URLs are picked out of the <code><D:href></code> elements
* of the response.
*
* @return an enumeration of URL paths as Strings
*/
public Enumeration getAllResponseURLs() {
checkUsed();
return getResponseURLs().elements();
}
/**
* Returns an enumeration of <code>Property</code> objects.
*/
public Enumeration getResponseProperties(String urlPath) {
checkUsed();
Response response = (Response) getResponseHashtable().get(urlPath);
if (response != null) {
return response.getProperties();
} else {
return (new Vector()).elements();
}
}
}
发表评论
-
手动将class打包成jar包方法
2010-09-10 00:41 2823<!-- ------------------ --&g ... -
教你用Java生成RSS 简单实用
2010-09-10 00:40 3297<!-- ------------------ --&g ... -
代码的坏味道
2010-06-29 13:10 16281. Duplicated Code(重 ... -
java 获取客户端ip mac地址
2010-02-23 15:47 2954转自:http://hi.baidu.com/coolcode ... -
java中输出流OutputStream类应用实例
2010-02-04 15:30 5240OutputStream类 该类是字节输出流的抽象类,定义了输 ... -
大幅优化myeclipse的速度&关闭自动更新
2010-02-01 21:24 1438去除不需要加载的模块 一个系统20%的功能往往能够满足80% ... -
Servlet 上传文件(转)
2010-01-18 14:45 1597编程思路:下面的UploadServlet.java ,其主 ... -
JAVA线程实例-----卖票
2010-01-08 15:44 1999package test; import java. ... -
如何学习Hibernate
2009-12-21 09:28 939Hibernate入门容易,掌握精通我也不敢自夸。我第 ... -
Tomcat 部署 Could not copy all resources to 或者Undeployment Failure could not be re
2009-12-16 22:13 3222Tomcat 部署,在部署可能会出现以下问题: Deploy ... -
Java 的JDBC 数据库连接池实现方法
2009-12-16 01:10 1354关键字: Java, JDBC, Connection Poo ... -
jdbc PreparedStatement的用法
2009-12-15 21:51 40413jdbc(java database connectivity ... -
用java获取文件夹的大小
2009-12-14 09:15 2489/** * <p> * Created on ... -
JavaBean实现多文件上传的两种方法
2009-12-10 10:32 1076摘要:本文介绍了J ... -
通过 http 协议上传文件
2009-12-10 10:07 21281、概述 在最初的 http ... -
自学Javabean迅速成为Java高手
2009-12-10 09:17 832很多网友咨询学习Java有 ... -
response.setContentType()的String参数及对应类型
2009-12-09 13:43 2505response.setContentType()的Strin ... -
Apache Commons fileUpload实现文件上传
2009-10-19 00:15 1279Apache的commons-fileupload.jar可方 ... -
Postfix邮件服务器架设笔记
2009-08-26 06:57 1677# 安装步骤1、安装操作系统 2、安装postfixadmin ... -
3分钟安装配置Postfix邮件服务器
2009-08-26 06:51 3046Linux邮件服务器通常使用sendmail,在网上googl ...
相关推荐
这对于处理敏感数据的WebDAV服务器来说至关重要,因为用户可能需要上传和下载包含个人信息或者商业机密的文件。 WsgiDAV的特性还包括: 1. **身份验证**:支持多种身份验证机制,如基本认证、NTLM、Kerberos等,以...
### 如何通过“网上邻居”访问WebDAV服务器 #### WebDAV简介 WebDAV(Web Distributed Authoring and Versioning)是一种基于HTTP协议的扩展技术,它支持用户对文件进行远程编辑和管理。WebDAV允许用户如同操作...
- 在Exchange 2003中,我们可以利用WebDAV接口来访问邮件存储。 2. **安装库**: - 首先,你需要安装一个支持WebDAV的库,例如`System.Web.Extensions`。这个库包含了`System.Net.WebClient`类,可以用来执行...
在本项目中,我们将重点讨论如何利用PHP实现一个WebDAV服务器,以便用户可以通过WebDAV协议访问和操作存储在服务器上的文件。 一、WebDAV基本原理 WebDAV扩展了HTTP协议,提供了创建、移动、复制、删除和修改资源的...
- **资源(Resource)**:在WebDAV上下文中,任何可以通过URL访问的信息实体都被视为资源。 - **集合(Collection)**:一种特殊的资源,用于存储其他资源或集合。 - **属性(Property)**:描述资源特性的数据项,可以被...
- 对于WebDAV的支持,用户可以轻松地连接到支持该协议的服务器,进行文件的上传、下载、移动、重命名等操作。 - FTP是一种标准网络协议,用于在网络上进行文件传输,而SFTP则是在SSH(Secure Shell)协议下进行...
《Exchange邮件服务器2010的安装与配置详解》 Exchange邮件服务器是Microsoft为企业级通信提供的强大工具,尤其在Exchange2010版本中,其功能更为完善,稳定性更强。本文将详细介绍Exchange2010邮件服务器的安装...
需要注意的是,虽然WebDAV提供了便利,但也存在一些潜在问题,如网络安全、隐私泄露等,因此使用时应确保网络环境安全,并妥善保管好自己的阿里云账号信息。此外,由于所有操作都在云端进行,如果网络连接不稳定,...
【IIS WebDAV扫描器】是一种专门针对微软Internet Information Services (IIS) Web服务器上WebDAV服务的安全检测工具。WebDAV(Web-based Distributed Authoring and Versioning)是HTTP协议的一个扩展,允许用户...
文章中提到了一些基于WebDAV技术的应用,如Apache/SOAP、mod_dav、Tomcat、Microsoft IIS(Internet Information Services)、Microsoft Exchange等,这些都支持WebDAV协议,允许服务器响应复杂的HTTP请求。...
基于webDAV协议的网盘文件编辑工具
webdav-aliyundriver 实现了阿里云盘的 webdav 协议,只需要简单的配置一下,就可以让阿里云盘变身为webdav协议的文件服务器, 基于此,你可以把阿里云盘挂载为Windows、Linux、Mac系统的磁盘,可以通过NAS系统做...
总之,"android webdav工具类"是Android应用中实现WebDAV协议的关键组件,它简化了与WebDAV服务器的交互,使得文件操作更加便捷。通过理解和利用这些工具类,开发者可以构建出高效、稳定的云存储解决方案。
同时,U-NAS(通用网络存储)和群晖NAS也被提及,它们是两种常见的网络存储解决方案,都支持WebDAV协议,可以作为WebDAV客户端的服务器端。 在Android平台上实现WebDAV功能,开发者需要在AndroidManifest.xml文件中...
在本例中,我们关注的是使用易语言实现WebDAV协议并与坚果云网盘进行交互的源码。 易语言是一种中文编程语言,它的设计目标是让中国的普通用户也能理解和使用编程。在这个项目中,我们使用了"鱼刺类_Http"模块来...
WebDAV(Web-based Distributed Authoring and Versioning)是一种基于HTTP协议的协议扩展,它允许用户通过Web服务器编辑和管理存储在远程服务器上的文件。WebDAV客户端是用于与WebDAV服务器交互的软件,使得用户...
Go-golang IPFS(ipfs.io)中间件WebDAV服务器是一种技术实现,它结合了Go语言的编程优势、IPFS(InterPlanetary File System)的分布式存储特性以及WebDAV协议,为用户提供了一种高效、安全的数据管理和共享方式。...
AnyClient是一款多协议文件传输工具,它为用户提供了一种方便的方式来访问和管理远程服务器上的文件。这款工具的64位版本专为处理更大内存需求和提高性能而设计,适用于Windows操作系统。在本文中,我们将深入探讨...