String[] contentTypesToTest = new String[] { "text/xml",
"application/pgp-key", "application/vnd.hp-PCLXL",
"application/vnd.lotus-1-2-3" };
- for (int i = 0; i < contentTypesToTest.length; ++i) {
- new ContentType(contentTypesToTest[i]);
+ for (String contentType : contentTypesToTest) {
+ new ContentType(contentType);
}
}
"text[/xml", "text]/xml", "text?/xml", "tex=t/xml",
"te{xt/xml", "tex}t/xml", "te xt/xml",
"text" + (char) 9 + "/xml", "text xml", " text/xml " };
- for (int i = 0; i < contentTypesToTest.length; ++i) {
+ for (String contentType : contentTypesToTest) {
try {
- new ContentType(contentTypesToTest[i]);
+ new ContentType(contentType);
} catch (InvalidFormatException e) {
continue;
}
- fail("Must have fail for content type: '" + contentTypesToTest[i]
- + "' !");
+ fail("Must have fail for content type: '" + contentType + "' !");
}
}
"mail/toto;titi = tata", // spaces not allowed
"text/\u0080" // characters above ASCII are not allowed
};
- for (int i = 0; i < contentTypesToTest.length; ++i) {
+ for (String contentType : contentTypesToTest) {
try {
- new ContentType(contentTypesToTest[i]);
+ new ContentType(contentType);
} catch (InvalidFormatException e) {
continue;
}
- fail("Must have fail for content type: '" + contentTypesToTest[i]
- + "' !");
+ fail("Must have fail for content type: '" + contentType + "' !");
}
}
*/
public void testContentTypeCommentFailure() {
String[] contentTypesToTest = new String[] { "text/xml(comment)" };
- for (int i = 0; i < contentTypesToTest.length; ++i) {
+ for (String contentType : contentTypesToTest) {
try {
- new ContentType(contentTypesToTest[i]);
+ new ContentType(contentType);
} catch (InvalidFormatException e) {
continue;
}
- fail("Must have fail for content type: '" + contentTypesToTest[i]
- + "' !");
+ fail("Must have fail for content type: '" + contentType + "' !");
}
}
POITextExtractor[] extractors =
new POITextExtractor[] { ooxmlExtractor, ole2Extractor };
- for (int i = 0; i < extractors.length; i++) {
- @SuppressWarnings("resource")
- POITextExtractor extractor = extractors[i];
-
+
+ for (POITextExtractor extractor : extractors) {
String text = extractor.getText().replaceAll("[\r\t]", "");
assertTrue(text.startsWith("First Sheet\nTest spreadsheet\n2nd row2nd row 2nd column\n"));
Pattern pattern = Pattern.compile(".*13(\\.0+)?\\s+Sheet3.*", Pattern.DOTALL);
import java.util.regex.Pattern;
import junit.framework.TestCase;
+
+import org.apache.poi.util.StringUtil;
import org.apache.poi.xwpf.XWPFTestDataSamples;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
"Phasellus ultricies mi nec leo. Sed tempus. In sit amet lorem at velit faucibus vestibulum.\n"
));
- // Check number of paragraphs
- int ps = 0;
- char[] t = text.toCharArray();
- for (int i = 0; i < t.length; i++) {
- if (t[i] == '\n') {
- ps++;
- }
- }
- assertEquals(3, ps);
+ // Check number of paragraphs by counting number of newlines
+ int numberOfParagraphs = StringUtil.count(text, '\n');
+ assertEquals(3, numberOfParagraphs);
extractor.close();
}
"11.4%\t\t90\t\t\t\t\t250\t\t1,310\t\n\n \n\n\n"
));
- // Check number of paragraphs
- int ps = 0;
- char[] t = text.toCharArray();
- for (int i = 0; i < t.length; i++) {
- if (t[i] == '\n') {
- ps++;
- }
- }
- assertEquals(134, ps);
+ // Check number of paragraphs by counting number of newlines
+ int numberOfParagraphs = StringUtil.count(text, '\n');
+ assertEquals(134, numberOfParagraphs);
extractor.close();
}