- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for MimeMap (0.19 sec)
-
src/main/java/jcifs/smb1/util/MimeMap.java
private static final int ST_EXT = 5; private final byte[] in; private int inLen; /** * Creates a new MimeMap instance by loading MIME type mappings from the resource file. * * @throws IOException if there is an error reading the mime.map resource file */ public MimeMap() throws IOException { int n; in = new byte[IN_SIZE];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/MimeMapTest.java
assertEquals("application/pdf", mimeMap.getMimeType("pdf")); assertEquals("application/msword", mimeMap.getMimeType("doc")); assertEquals("application/vnd.ms-excel", mimeMap.getMimeType("xls")); assertEquals("text/html", mimeMap.getMimeType("html")); assertEquals("text/html", mimeMap.getMimeType("htm")); assertEquals("image/jpeg", mimeMap.getMimeType("jpg"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
* Default constructor. */ public NetworkExplorer() { super(); } private static LogStream log = LogStream.getInstance(); /** The MIME type mapping */ private MimeMap mimeMap; /** The CSS style for HTML rendering */ private String style; /** The NTLM SSP handler */ private NtlmSsp ntlmSsp; /** Flag indicating if credentials were supplied */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0)