Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for filetype (0.18 sec)

  1. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

        protected final BeanDesc beanDesc;
    
        /** フィールド */
        protected final Field field;
    
        /** フィールド名 */
        protected final String fieldName;
    
        /** フィールドの型 */
        protected final Class<?> fieldType;
    
        /** パラメータ化された型の情報 */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
         * インスタンスを構築します。
         *
         * @param beanDesc
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/net/MimeTypeUtil.java

            assertArgumentNotEmpty("path", path);
    
            final InputStream is = ResourceUtil.getResourceAsStream(path);
            try {
                final String mimetype = URLConnection.guessContentTypeFromStream(is);
                if (mimetype != null) {
                    return mimetype;
                }
                return URLConnection.guessContentTypeFromName(path);
            } catch (final IOException e) {
                throw new IORuntimeException(e);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top