Macros - AddExcelExportToLivetableMacroGroovy
Page of - dernière modification par Gilbert LUCAS le 2016/01/28 17:03
AddExcelExportToLivetableMacroGroovy
Gilbert LUCAS
2016/01/28 17:03
Table des matières
/* Groovy Class #* */
import java.io.IOException;
import java.io.StringReader;
import com.xpn.xwiki.web.Utils;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.DefaultHandler;
import org.xwiki.xml.XMLReaderFactory;
import org.xwiki.xml.EntityResolver;
public class TextExtractHandler extends DefaultHandler
{
static StringBuilder textResult = new StringBuilder();
public void characters(char[] ch, int start, int length)
{
textResult.append(ch, start, length);
}
public String getCleanText(String txt)
{
String res = "";
try {
textResult = new StringBuilder();
XMLReader myReader =
Utils.getComponent(XMLReaderFactory.class).createXMLReader();
DefaultHandler myHandler = new TextExtractHandler();
myReader.setContentHandler(myHandler);
myReader.setErrorHandler(myHandler);
myReader.setEntityResolver(Utils.getComponent(EntityResolver.class)
);
InputSource inputSource = new InputSource(new StringReader(txt));
myReader.parse(inputSource);
return textResult.toString();
} catch (Exception e) {
e.printStackTrace();
res += e;
}
return res;
}
}
/* *# */
1 / 4 100%
La catégorie de ce document est-elle correcte?
Merci pour votre participation!

Faire une suggestion

Avez-vous trouvé des erreurs dans linterface ou les textes ? Ou savez-vous comment améliorer linterface utilisateur de StudyLib ? Nhésitez pas à envoyer vos suggestions. Cest très important pour nous !