Javadocによると...
A sequence of elements supporting sequential and parallel aggregate operations.
Streamとはシーケンス(sequence)である。
package extensions; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.HashSet; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Set; | |
import java.util.TreeMap; |
import java.io.*; | |
import java.text.DateFormat; | |
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.*; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import java.util.zip.ZipEntry; | |
import java.util.zip.ZipFile; |
'更新日が一定の期間中であるファイルから、特定の文字列が含まれているものを検索する。 | |
' | |
'使用法: | |
'cscript search.vbs [検索対象ディレクトリ] [検索文字列] [更新日(最古)] [更新日(最新)] | |
Option Explicit | |
Dim STDOUT: Set STDOUT = WScript.StdOut | |
Dim FS: Set FS = CreateObject("Scripting.FileSystemObject") | |
Dim ARGS: Set ARGS = WScript.Arguments |
Javadocによると...
A sequence of elements supporting sequential and parallel aggregate operations.
Streamとはシーケンス(sequence)である。
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
jcenter() | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:1.2.3' | |
classpath 'me.tatarka:gradle-retrolambda:3.2.0' |
apply plugin: 'com.android.application' | |
apply plugin: 'me.tatarka.retrolambda' | |
android { | |
compileSdkVersion 21 | |
buildToolsVersion "22.0.1" | |
defaultConfig { | |
applicationId "yukihane.helloretrolambda" | |
minSdkVersion 9 |
buildscript { | |
repositories { | |
jcenter() | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:1.3.0-beta4' | |
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.5' | |
} | |
} |
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ | |
/* | |
Copyright (c) 2002-2015 ymnk, JCraft,Inc. All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
1. Redistributions of source code must retain the above copyright notice, | |
this list of conditions and the following disclaimer. |
import java.net.HttpURLConnection; | |
import java.util.ArrayList; | |
import javaj.ClassJavaj; | |
import javax.swing.JFrame; | |
import jp.mycompany.myproject.ClassJp; | |
import org.w3c.dom.DOMException; |