scala编程
wlqt520
这个作者很懒,什么都没留下…
展开
-
Mongodb Scala DAO
转载:http://blog.yunglinho.com/blog/2012/04/30/mongodb-dao/ 這篇文章將說說,我使用 MongoDB & Cashbah 的一些心得,這程式的主架構是 我從 simplistic 學來的。The Abstract DAO底下是一個很簡單的 CRUD 的 MongoDB DAO. 在這邊,我...原创 2012-05-21 14:06:57 · 141 阅读 · 0 评论 -
scala教程
http://www.scalatra.org/2.0/book/原创 2012-05-23 16:34:55 · 76 阅读 · 0 评论 -
scala InputStream to Array[Byte] method
/** * inputStream to Array[Byte] method **/def inputStreamToByteArray(is: InputStream): Array[Byte] = { val buf = ListBuffer[Byte]() var b = is.read() while (b != -1) { ...原创 2012-05-25 11:54:40 · 413 阅读 · 0 评论 -
scala 时间格式化操作
import com.twitter.util.TimeFormat反格式化val datemilliseconds = new TimeFormat("yyyyMMdd").parse(date).inMilliseconds格式化new TimeFormat("yyyyMMdd").format(Time.fromMilliseconds(millisSeconds))...原创 2012-06-08 11:00:19 · 941 阅读 · 0 评论 -
scala API
http://www.scala-lang.org/api/current/index.html#package原创 2012-06-12 13:09:14 · 148 阅读 · 0 评论