當前位置: 首頁>>代碼示例>>Java>>正文


Java PathSpecWindows類代碼示例

本文整理匯總了Java中de.pfabulist.kleinod.nio.PathSpecWindows的典型用法代碼示例。如果您正苦於以下問題:Java PathSpecWindows類的具體用法?Java PathSpecWindows怎麽用?Java PathSpecWindows使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


PathSpecWindows類屬於de.pfabulist.kleinod.nio包,在下文中一共展示了PathSpecWindows類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: WindowsBuilder

import de.pfabulist.kleinod.nio.PathSpecWindows; //導入依賴的package包/類
public WindowsBuilder( FSDescription descr, T t ) {
    super( descr, t );

    descr.removeTopic( Unix.class );

    PathLimits pathLimits = new PathLimits( OS.WINDOWS );
    PathSpec pathSpec = new PathSpecWindows();
    descr.props.put( Tests10PathWithContent.ONE_CHAR_COUNT, pathLimits.getBigChar() );
    descr.props.put( Tests10PathWithContent.MAX_FILENAME_LENGTH, pathSpec.getMaxFilenameLength() );
    descr.props.put( Tests10PathWithContent.MAX_PATH_LENGTH, pathSpec.getMaxPathLength() );
    descr.props.put( Tests10PathWithContent.GET_FILENAME_LENGTH, (Function<String,Integer>)pathSpec::getFilenameLength );
    descr.props.put( Tests10PathWithContent.GET_PATH_LENGTH, (Function<String,Integer>)pathSpec::getPathLength );
    descr.removeTopic( Posix.class );
    descr.removeTopic( MoveWhile.class );
    descr.removeTopic( NonCasePreserving.class );
    descr.removeTopic( FileKeyT.class );


    descr.attributeDescriptions.put( "dos",
            attributeBuilding( DosAttributesT.class, "dos", DosFileAttributeView.class, DosFileAttributes.class ).
                    addAttribute( "hidden", DosFileAttributes::isHidden ).
                    addAttribute( "archive", DosFileAttributes::isArchive ).
                    addAttribute( "system", DosFileAttributes::isSystem ).
                    addAttribute( "readonly", DosFileAttributes::isReadOnly ).
                    build() );

}
 
開發者ID:openCage,項目名稱:niotest,代碼行數:28,代碼來源:WindowsBuilder.java

示例2: testWindows1

import de.pfabulist.kleinod.nio.PathSpecWindows; //導入依賴的package包/類
@Test
public void testWindows1() throws Exception {
    GetPathConverter gp = new GetPathConverter( new PathSpecWindows(), "a", "..", "c" );
    assertThat( gp.isAbsolute() ).isFalse();
    assertThat( gp.getAll() ).isEqualTo( Arrays.asList( "a", "..", "c" ) );
}
 
開發者ID:openCage,項目名稱:eightyfs,代碼行數:7,代碼來源:GetPathConverterTest.java

示例3: getPathSpec

import de.pfabulist.kleinod.nio.PathSpecWindows; //導入依賴的package包/類
@Override
public PathSpec getPathSpec() {
    return new PathSpecWindows();
}
 
開發者ID:openCage,項目名稱:eightyfs,代碼行數:5,代碼來源:WinTreeFS.java

示例4: windows

import de.pfabulist.kleinod.nio.PathSpecWindows; //導入依賴的package包/類
public static MemoryFSBuilder windows() {
    return new MemoryFSBuilder().
            pathSpec( new PathSpecWindows() ).
            primaryStoreName( "c:").
            attributeView( DosFileAttributeView.class );
}
 
開發者ID:openCage,項目名稱:memoryfs,代碼行數:7,代碼來源:MemoryFSBuilder.java


注:本文中的de.pfabulist.kleinod.nio.PathSpecWindows類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。