VOOZH about

URL: https://www.javacodegeeks.com/author/yifan-peng

⇱ Yifan Peng, Author at Java Code Geeks


  • Enterprise Java👁 Image
    Yifan PengAugust 19th, 2015
    1 582

    How to create a Web Application Project with Java, Maven, Jetty

    In this article, we create a simple web application with the Maven Archetype plugin. We’ll run this web application in…

    Read More »
  • Software Development👁 Image
    Yifan PengFebruary 26th, 2015
    1 303

    Resolve coreference using Stanford CoreNLP

    Coreference resolution is the task of finding all expressions that refer to the same entity in a text. Stanford CoreNLP…

    Read More »
  • Enterprise Java👁 Image
    Yifan PengSeptember 21st, 2014
    4 291

    Hosting a Maven repository on github (with sources and javadoc)

    How to make a small open sourced library available to other developers via maven? One way is to deploy it…

    Read More »
  • Core Java👁 Image
    Yifan PengSeptember 10th, 2014
    0 309

    Mockito 101

    Mockito is a mocking framework that lets you write beatiful tests with clean and simple API. It biases toward minimal…

    Read More »
  • Core Java👁 Image
    Yifan PengJanuary 26th, 2014
    0 255

    Using regex to hanging indent a paragraph in Java

    This post shows how to hanging indent a long paragraph using regular expression. The method will consider word boundaries, which…

    Read More »
  • Core Java👁 Image
    Yifan PengDecember 4th, 2013
    3 785

    Java.io in nutshell: 22 case studies

    This post attempts to cover a comprehensive set of operations in java.io. Compared with other books and blogs related to…

    Read More »
  • Core Java👁 Image
    Yifan PengOctober 30th, 2013
    10 3,405

    Most efficient way to increment a Map value in Java – Only search the key once

    This question may be considered too basic, but is frequently asked in the forums. In this post, I will discuss…

    Read More »
  • Core Java👁 Image
    Yifan PengOctober 30th, 2013
    1 574

    How to read CSV files in Java – A case study of Iterator and Decorator

    In this post, I will talk about how to read CSV (Comma-separated values) files using Apache Common CSV. From this…

    Read More »
Back to top button
Close