- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for Encoding (0.02 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
* @param params The parameter string. * @param paramList Additional parameters. * @param encoding The encoding. * @return The HttpEntity containing the parsed parameters. */ protected HttpEntity parseRequestParameters(final String params, final List<Pair<String, String>> paramList, final String encoding) { try { final List<BasicNameValuePair> parameters =Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
return charset; } /** * Gets the character encoding used for files. * * @return the character encoding */ public String getCharset() { return charset; } /** * Sets the character encoding used for files. * * @param charset the character encoding to set */ public void setCharset(final String charset) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
} return normalizeEncoding(encoding); } /** * Normalizes the encoding name using the encoding helper. * * @param encoding the encoding name to normalize * @return the normalized encoding name */ protected String normalizeEncoding(final String encoding) { try {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
* @param url the parent URL * @param depth the depth of the child URLs * @param encoding the encoding of the child URLs */ protected void storeChildUrls(final CrawlerContext crawlerContext, final Set<RequestData> childUrlList, final String url, final int depth, final String encoding) { // add url and filter final Set<String> urlSet = new HashSet<>();Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
return charset; } /** * Gets the character encoding used for FTP operations. * * @return The character encoding */ public String getCharset() { return charset; } /** * Sets the character encoding used for FTP operations. * * @param charset The character encoding to set */ public void setCharset(final String charset) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
if (data == null) { return null; } final String encoding = accessResultData.getEncoding(); String filePath; try { filePath = new String(data, encoding == null ? Constants.UTF_8 : encoding); } catch (final UnsupportedEncodingException e) { filePath = new String(data, Constants.UTF_8_CHARSET); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
* @param encoding An encoding. * @param normalizeText If true, normalize a text. * @return a content. * @throws TikaException if a Tika exception occurs. */ protected String getContent(final ContentWriter out, final String encoding, final boolean normalizeText) throws TikaException { File tempFile = null; final String enc = encoding == null ? Constants.UTF_8 : encoding;Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
buf.append(value).append("\n"); } return buf.toString(); } } /** * Sets the encoding for the output. * @param outputEncoding The output encoding to set. */ public void setOutputEncoding(final String outputEncoding) { this.outputEncoding = outputEncoding; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java
* @return the decoded text or empty string if decoding fails */ protected String getDecodeText(final String value) { if (value == null) { return StringUtil.EMPTY; } try { return MimeUtility.decodeText(value); } catch (final UnsupportedEncodingException e) { logger.warn("Invalid encoding.", e); return StringUtil.EMPTY; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
*/ public void setTempDir(final File tempDir) { this.tempDir = tempDir; } /** * Sets the output encoding for extracted text. * * @param outputEncoding the output encoding to set */ public void setOutputEncoding(final String outputEncoding) { this.outputEncoding = outputEncoding; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.3K bytes - Viewed (0)