本文整理匯總了Java中org.apache.abdera.writer.Writer類的典型用法代碼示例。如果您正苦於以下問題:Java Writer類的具體用法?Java Writer怎麽用?Java Writer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Writer類屬於org.apache.abdera.writer包,在下文中一共展示了Writer類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: write
import org.apache.abdera.writer.Writer; //導入依賴的package包/類
/**
* Write this feed to the given output stream. Might throw an exception if the output stream signals an IO
* Exception.
*
* @param os {@link OutputStream}
* @throws IOException {@link IOException}
*/
public void write(OutputStream os) throws IOException {
// Writer writer = Abdera.getInstance().getWriterFactory().getWriter("prettyxml");
// TODO: pipe stream through a filter that removes lines with nothing but spaces in it
Writer writer = Abdera.getInstance().getWriterFactory().getWriter();
writer.writeTo(feed, os);
// feed.writeTo(os);
}
示例2: writeTo
import org.apache.abdera.writer.Writer; //導入依賴的package包/類
@Override
public void writeTo(Object feedOrEntry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream) throws IOException, WebApplicationException {
Writer writer = new Abdera().getWriterFactory().getWriter("PrettyXML");
writer.writeTo((feedOrEntry instanceof Feed) ? (Feed) feedOrEntry : (Entry) feedOrEntry, entityStream);
}