- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 1,068 for Encodings (0.07 seconds)
-
src/main/java/org/codelibs/core/io/FileUtil.java
/** * Reads text from a file with the specified encoding. * * @param path * The file path. Must not be {@literal null} or empty. * @param encoding * The encoding. Must not be {@literal null} or empty. * @return The text read from the file. */ public static String readText(final String path, final String encoding) { assertArgumentNotEmpty("path", path);Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 13.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java
*/ void setData(byte[] data); /** * Retrieves the encoding used for the access result data. * * @return the encoding as a String. */ String getEncoding(); /** * Sets the encoding for the access result data. * * @param encoding the encoding to set */ void setEncoding(String encoding);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 2.2K bytes - Click Count (10) -
src/main/java/org/codelibs/curl/CurlResponse.java
} /** * Gets the encoding used for the response content. * * @return the encoding. */ public String getEncoding() { return encoding; } /** * Sets the encoding for the response content. * * @param encoding the encoding to set. */ public void setEncoding(final String encoding) { this.encoding = encoding; }Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Mon Nov 24 03:10:07 GMT 2025 - 7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
logger.debug("Invalid encoding: {}, using default: {}", encodingParam, encoding, e); } } } } return Charset.forName(encoding); } /** * Sets the encoding for CSV files. * * @param encoding the encoding */ public void setEncoding(final String encoding) { this.encoding = encoding; }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 12.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TextExtractor.java
throw new ExtractException("Failed to extract text content using encoding: " + getEncoding(), e); } } /** * Returns the encoding used for text extraction. * @return the encoding */ public String getEncoding() { return encoding; } /** * Sets the encoding. * @param encoding The encoding to set. */ public void setEncoding(final String encoding) {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 2K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java
assertTrue("Error message should contain encoding information", e.getMessage().contains("encoding")); assertTrue("Error message should contain the specific encoding", e.getMessage().contains(customEncoding)); assertTrue("Error message should indicate extraction failure", e.getMessage().contains("Failed to extract")); } finally { // Reset to default encoding textExtractor.setEncoding("UTF-8");
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 8.9K bytes - Click Count (0) -
pom.xml
<artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <encoding>UTF-8</encoding> <release>21</release> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> </configuration> </plugin>
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Dec 20 04:15:34 GMT 2025 - 4.9K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
} } @Nested @DisplayName("Encoding Tests") class EncodingTests { @Test @DisplayName("Should encode value correctly") void testEncode() throws NdrException { // Given: NdrShort with test value int testValue = 123; NdrShort ndrShort = new NdrShort(testValue); // When: Encoding the value ndrShort.encode(mockBuffer);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java
} /** * Get the encoding. * @return encoding */ public String getEncoding() { return encoding; } /** * Set the encoding. * @param encoding the encoding to set */ public void setEncoding(final String encoding) { this.encoding = encoding; } /**Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 4.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
*/ public void setFlag(final int flag) { this.flag = flag; } /** * Sets the encoding for URL decoding. * * @param encoding the encoding to set */ public void setEncoding(final String encoding) { this.encoding = encoding; }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 06 07:24:43 GMT 2025 - 3.9K bytes - Click Count (0)