This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String[] desktop = {"explorer", "C:/Users/hoshi/Desktop/"}; | |
open(desktop); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.ByteArrayOutputStream; | |
import java.util.zip.DataFormatException; | |
import java.util.zip.Deflater; | |
import java.util.zip.Inflater; | |
import java.util.zip.CRC32; | |
import javax.xml.bind.DatatypeConverter; | |
// フィルタータイプ | |
static final int FT_NONE = 0; | |
static final int FT_SUB = 1; |