- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for ftpClient (0.05 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
* </p> * * <pre> * {@code * FtpClient ftpClient = new FtpClient(); * ftpClient.init(); // Initialize with configured parameters * ResponseData responseData = ftpClient.doGet("ftp://example.com/path/to/file.txt"); * // Process the responseData * ftpClient.close(); // Close and release resources * } * </pre> * * @author shinsuke */ public class FtpClient extends AbstractCrawlerClient {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 40K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
public FtpClient ftpClient; @Override protected void setUp() throws Exception { super.setUp(); StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("mimeTypeHelper", MimeTypeHelperImpl.class)// .singleton("ftpClient", FtpClient.class); ftpClient = container.getComponent("ftpClient"); }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 21.5K bytes - Click Count (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
instance="prototype"> <property name="charset">"UTF-8"</property> <!-- ntlmPasswordAuthentication --> </component> <component name="ftpClient" class="org.codelibs.fess.crawler.client.ftp.FtpClient" instance="prototype"> <property name="charset">"UTF-8"</property> </component> <component name="storageClient"
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.ftp.FtpAuthentication; import org.codelibs.fess.crawler.client.ftp.FtpClient; import org.codelibs.fess.crawler.client.http.Authentication; import org.codelibs.fess.crawler.client.http.HcHttpClient; import org.codelibs.fess.crawler.client.http.form.FormScheme;
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 18.8K bytes - Click Count (0) -
CLAUDE.md
Pattern-based client selection using `LinkedHashMap<Pattern, CrawlerClient>`. **Standard Patterns**: ```java "^https?://.*" → httpClient "^file:.*" → fileSystemClient "^ftp://.*" → ftpClient "^smb://.*" → smbClient "^storage://.*" → storageClient ``` ### Services **UrlQueueService**: URL queue management (FIFO), duplicate detection via `visited()`
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Fri Nov 28 17:31:34 GMT 2025 - 10.7K bytes - Click Count (0)