热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

java常用代码有哪些

java常用代码有:1、字符串有整型的相互转换;2、向文件末尾添加内容;3、得到当前方法的名字;4、转字符串到日期;5、使用JDBC链接Oracle;6、使用NIO进行快速的文件拷贝。

java常用代码有:1、 字符串有整型的相互转换;2、向文件末尾添加内容;3、得到当前方法的名字 ;4、转字符串到日期;5、使用JDBC链接Oracle;6、使用NIO进行快速的文件拷贝。

java常用代码有:

1. 字符串有整型的相互转换

String a = String.valueOf(2);   //integer to numeric string  
int i = Integer.parseInt(a); //numeric string to an int

相关学习推荐:java基础教程

2. 向文件末尾添加内容

BufferedWriter out = null; 
try { 
  out = new BufferedWriter(new FileWriter(”filename”, true)); 
  out.write(”aString”); 
} catch (IOException e) { 
  // error processing code 
} finally { 
  if (out != null) { 
    out.close(); 
  } 
}

3. 得到当前方法的名字

String methodName = Thread.currentThread().getStackTrace()[1].getMethodName();

4. 转字符串到日期

java.util.Date = java.text.DateFormat.getDateInstance().parse(date String);
//或者是:
SimpleDateFormat format = new SimpleDateFormat( "dd.MM.yyyy" );  
Date date = format.parse( myString );

5. 使用JDBC链接Oracle

public class OracleJdbcTest 
{ 
  String driverClass = "oracle.jdbc.driver.OracleDriver"; 
  
  Connection con; 
  
  public void init(FileInputStream fs) throws ClassNotFoundException, SQLException, FileNotFoundException, IOException 
  { 
    Properties props = new Properties(); 
    props.load(fs); 
    String url = props.getProperty("db.url"); 
    String userName = props.getProperty("db.user"); 
    String password = props.getProperty("db.password"); 
    Class.forName(driverClass); 
  
    con=DriverManager.getConnection(url, userName, password); 
  } 
  
  public void fetch() throws SQLException, IOException 
  { 
    PreparedStatement ps = con.prepareStatement("select SYSDATE from dual"); 
    ResultSet rs = ps.executeQuery(); 
  
    while (rs.next()) 
    { 
      // do the thing you do 
    } 
    rs.close(); 
    ps.close(); 
  } 
  
  public static void main(String[] args) 
  { 
    OracleJdbcTest test = new OracleJdbcTest(); 
    test.init(); 
    test.fetch(); 
  } 
}

6. 把 Java util.Date 转成 sql.Date

java.util.Date utilDate = new java.util.Date(); 
java.sql.Date sqlDate = new java.sql.Date(utilDate.getTime());

7. 使用NIO进行快速的文件拷贝

public static void fileCopy( File in, File out ) 
      throws IOException 
  { 
    FileChannel inChannel = new FileInputStream( in ).getChannel(); 
    FileChannel outChannel = new FileOutputStream( out ).getChannel(); 
    try
    { 
//     inChannel.transferTo(0, inChannel.size(), outChannel);   // original -- apparently has trouble copying large files on Windows 
  
      // magic number for Windows, 64Mb - 32Kb) 
      int maxCount = (64 * 1024 * 1024) - (32 * 1024); 
      long size = inChannel.size(); 
      long position = 0; 
      while ( position 

8. 创建图片的缩略图

private void createThumbnail(String filename, int thumbWidth, int thumbHeight, int quality, String outFilename) 
    throws InterruptedException, FileNotFoundException, IOException 
  { 
    // load image from filename 
    Image image = Toolkit.getDefaultToolkit().getImage(filename); 
    MediaTracker mediaTracker = new MediaTracker(new Container()); 
    mediaTracker.addImage(image, 0); 
    mediaTracker.waitForID(0); 
    // use this to test for errors at this point: System.out.println(mediaTracker.isErrorAny()); 
  
    // determine thumbnail size from WIDTH and HEIGHT 
    double thumbRatio = (double)thumbWidth / (double)thumbHeight; 
    int imageWidth = image.getWidth(null); 
    int imageHeight = image.getHeight(null); 
    double imageRatio = (double)imageWidth / (double)imageHeight; 
    if (thumbRatio 

9.创建 JSON 格式的数据

并下面这个JAR 文件:json-rpc-1.0.jar (75 kb)/http://t.cn/Rz0bhUA

import org.json.JSONObject; 
... 
... 
JSONObject json = new JSONObject(); 
json.put("city", "Mumbai"); 
json.put("country", "India"); 
... 
String output = json.toString(); 
...

10. 使用iText JAR生成PDF

import java.io.File; 
import java.io.FileOutputStream; 
import java.io.OutputStream; 
import java.util.Date; 
  
import com.lowagie.text.Document; 
import com.lowagie.text.Paragraph; 
import com.lowagie.text.pdf.PdfWriter; 
  
public class GeneratePDF { 
  
  public static void main(String[] args) { 
    try { 
      OutputStream file = new FileOutputStream(new File("C:\\Test.pdf")); 
  
      Document document = new Document(); 
      PdfWriter.getInstance(document, file); 
      document.open(); 
      document.add(new Paragraph("Hello Kiran")); 
      document.add(new Paragraph(new Date().toString())); 
  
      document.close(); 
      file.close(); 
  
    } catch (Exception e) { 
  
      e.printStackTrace(); 
    } 
  } 
}

11. HTTP 代理设置

System.getProperties().put("http.proxyHost", "someProxyURL"); 
System.getProperties().put("http.proxyPort", "someProxyPort"); 
System.getProperties().put("http.proxyUser", "someUserName"); 
System.getProperties().put("http.proxyPassword", "somePassword");

12. 单实例Singleton 示例

public class SimpleSingleton { 
  private static SimpleSingleton singleInstance = new SimpleSingleton(); 
  
  //Marking default constructor private 
  //to avoid direct instantiation. 
  private SimpleSingleton() { 
  } 
  
  //Get instance for class SimpleSingleton 
  public static SimpleSingleton getInstance() { 
  
    return singleInstance; 
  } 
}

13. 抓屏程序

import java.awt.Dimension; 
import java.awt.Rectangle; 
import java.awt.Robot; 
import java.awt.Toolkit; 
import java.awt.image.BufferedImage; 
import javax.imageio.ImageIO; 
import java.io.File; 
  
... 
  
public void captureScreen(String fileName) throws Exception { 
  
  Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); 
  Rectangle screenRectangle = new Rectangle(screenSize); 
  Robot robot = new Robot(); 
  BufferedImage image = robot.createScreenCapture(screenRectangle); 
  ImageIO.write(image, "png", new File(fileName)); 
  
} 
...

14. 列出文件和目录

File dir = new File("directoryName"); 
 String[] children = dir.list(); 
 if (children == null) { 
   // Either dir does not exist or is not a directory 
 } else { 
   for (int i=0; i 

15. 创建ZIP和JAR文件

import java.util.zip.*; 
import java.io.*; 
  
public class ZipIt { 
  public static void main(String args[]) throws IOException { 
    if (args.length <2) { 
      System.err.println("usage: java ZipIt Zip.zip file1 file2 file3"); 
      System.exit(-1); 
    } 
    File zipFile = new File(args[0]); 
    if (zipFile.exists()) { 
      System.err.println("Zip file already exists, please try another"); 
      System.exit(-2); 
    } 
    FileOutputStream fos = new FileOutputStream(zipFile); 
    ZipOutputStream zos = new ZipOutputStream(fos); 
    int bytesRead; 
    byte[] buffer = new byte[1024]; 
    CRC32 crc = new CRC32(); 
    for (int i=1, n=args.length; i 

16. 解析/读取XML 文件

XML文件

 
 
   
    John 
    B 
    12 
   
   
    Mary 
    A 
    11 
   
   
    Simon 
    A 
    18 
   

Java代码

package net.viralpatel.java.xmlparser; 
  
import java.io.File; 
import javax.xml.parsers.DocumentBuilder; 
import javax.xml.parsers.DocumentBuilderFactory; 
  
import org.w3c.dom.Document; 
import org.w3c.dom.Element; 
import org.w3c.dom.Node; 
import org.w3c.dom.NodeList; 
  
public class XMLParser { 
  
  public void getAllUserNames(String fileName) { 
    try { 
      DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); 
      DocumentBuilder db = dbf.newDocumentBuilder(); 
      File file = new File(fileName); 
      if (file.exists()) { 
        Document doc = db.parse(file); 
        Element docEle = doc.getDocumentElement(); 
  
        // Print root element of the document 
        System.out.println("Root element of the document: "
            + docEle.getNodeName()); 
  
        NodeList studentList = docEle.getElementsByTagName("student"); 
  
        // Print total student elements in document 
        System.out 
            .println("Total students: " + studentList.getLength()); 
  
        if (studentList != null && studentList.getLength() > 0) { 
          for (int i = 0; i 

17. 把 Array 转换成 Map

import java.util.Map; 
import org.apache.commons.lang.ArrayUtils; 
  
public class Main { 
  
 public static void main(String[] args) { 
  String[][] countries = { { "United States", "New York" }, { "United Kingdom", "London" }, 
    { "Netherland", "Amsterdam" }, { "Japan", "Tokyo" }, { "France", "Paris" } }; 
  
  Map countryCapitals = ArrayUtils.toMap(countries); 
  
  System.out.println("Capital of Japan is " + countryCapitals.get("Japan")); 
  System.out.println("Capital of France is " + countryCapitals.get("France")); 
 } 
}

18. 发送邮件

import javax.mail.*; 
import javax.mail.internet.*; 
import java.util.*; 
  
public void postMail( String recipients[ ], String subject, String message , String from) throws MessagingException 
{ 
  boolean debug = false; 
  
   //Set the host smtp address 
   Properties props = new Properties(); 
   props.put("mail.smtp.host", "smtp.example.com"); 
  
  // create some properties and get the default Session 
  Session session = Session.getDefaultInstance(props, null); 
  session.setDebug(debug); 
  
  // create a message 
  Message msg = new MimeMessage(session); 
  
  // set the from and to address 
  InternetAddress addressFrom = new InternetAddress(from); 
  msg.setFrom(addressFrom); 
  
  InternetAddress[] addressTo = new InternetAddress[recipients.length]; 
  for (int i = 0; i 

19. 发送代数据的HTTP 请求

import java.io.BufferedReader; 
import java.io.InputStreamReader; 
import java.net.URL; 
  
public class Main { 
  public static void main(String[] args) { 
    try { 
      URL my_url = new URL("http://coolshell.cn/"); 
      BufferedReader br = new BufferedReader(new InputStreamReader(my_url.openStream())); 
      String strTemp = ""; 
      while(null != (strTemp = br.readLine())){ 
      System.out.println(strTemp); 
    } 
    } catch (Exception ex) { 
      ex.printStackTrace(); 
    } 
  } 
}

20. 改变数组的大小

/** 
* Reallocates an array with a new size, and copies the contents 
* of the old array to the new array. 
* @param oldArray the old array, to be reallocated. 
* @param newSize  the new array size. 
* @return     A new array with the same contents. 
*/
private static Object resizeArray (Object oldArray, int newSize) { 
  int oldSize = java.lang.reflect.Array.getLength(oldArray); 
  Class elementType = oldArray.getClass().getComponentType(); 
  Object newArray = java.lang.reflect.Array.newInstance( 
     elementType,newSize); 
  int preserveLength = Math.min(oldSize,newSize); 
  if (preserveLength > 0) 
   System.arraycopy (oldArray,0,newArray,0,preserveLength); 
  return newArray; 
} 
  
// Test routine for resizeArray(). 
public static void main (String[] args) { 
  int[] a = {1,2,3}; 
  a = (int[])resizeArray(a,5); 
  a[3] = 4; 
  a[4] = 5; 
  for (int i=0; i

相关学习推荐:编程视频

以上就是java常用代码有哪些的详细内容,更多请关注其它相关文章!


推荐阅读
  • com.sun.javadoc.PackageDoc.exceptions()方法的使用及代码示例 ... [详细]
  • Spark中使用map或flatMap将DataSet[A]转换为DataSet[B]时Schema变为Binary的问题及解决方案
    本文探讨了在使用Spark的map或flatMap算子将一个数据集转换为另一个数据集时,遇到的Schema变为Binary的问题,并提供了详细的解决方案。 ... [详细]
  • 在PHP中如何正确调用JavaScript变量及定义PHP变量的方法详解 ... [详细]
  • 您的数据库配置是否安全?DBSAT工具助您一臂之力!
    本文探讨了Oracle提供的免费工具DBSAT,该工具能够有效协助用户检测和优化数据库配置的安全性。通过全面的分析和报告,DBSAT帮助用户识别潜在的安全漏洞,并提供针对性的改进建议,确保数据库系统的稳定性和安全性。 ... [详细]
  • 本文深入解析了通过JDBC实现ActiveMQ消息持久化的机制。JDBC能够将消息可靠地存储在多种关系型数据库中,如MySQL、SQL Server、Oracle和DB2等。采用JDBC持久化方式时,数据库会自动生成三个关键表:`activemq_msgs`、`activemq_lock`和`activemq_ACKS`,分别用于存储消息数据、锁定信息和确认状态。这种机制不仅提高了消息的可靠性,还增强了系统的可扩展性和容错能力。 ... [详细]
  • 本文详细介绍了在CentOS 6.5 64位系统上使用阿里云ECS服务器搭建LAMP环境的具体步骤。首先,通过PuTTY工具实现远程连接至服务器。接着,检查当前系统的磁盘空间使用情况,确保有足够的空间进行后续操作,可使用 `df` 命令进行查看。此外,文章还涵盖了安装和配置Apache、MySQL和PHP的相关步骤,以及常见问题的解决方法,帮助用户顺利完成LAMP环境的搭建。 ... [详细]
  • 在 Axublog 1.1.0 版本的 `c_login.php` 文件中发现了一个严重的 SQL 注入漏洞。该漏洞允许攻击者通过操纵登录请求中的参数,注入恶意 SQL 代码,从而可能获取敏感信息或对数据库进行未授权操作。建议用户尽快更新到最新版本并采取相应的安全措施以防止潜在的风险。 ... [详细]
  • Web开发框架概览:Java与JavaScript技术及框架综述
    Web开发涉及服务器端和客户端的协同工作。在服务器端,Java是一种优秀的编程语言,适用于构建各种功能模块,如通过Servlet实现特定服务。客户端则主要依赖HTML进行内容展示,同时借助JavaScript增强交互性和动态效果。此外,现代Web开发还广泛使用各种框架和库,如Spring Boot、React和Vue.js,以提高开发效率和应用性能。 ... [详细]
  • 本文最初发表在Thorben Janssen的Java EE博客上,每周都会分享最新的Java新闻和动态。 ... [详细]
  • 本教程详细介绍了如何使用 Spring Boot 创建一个简单的 Hello World 应用程序。适合初学者快速上手。 ... [详细]
  • 在JavaWeb开发中,文件上传是一个常见的需求。无论是通过表单还是其他方式上传文件,都必须使用POST请求。前端部分通常采用HTML表单来实现文件选择和提交功能。后端则利用Apache Commons FileUpload库来处理上传的文件,该库提供了强大的文件解析和存储能力,能够高效地处理各种文件类型。此外,为了提高系统的安全性和稳定性,还需要对上传文件的大小、格式等进行严格的校验和限制。 ... [详细]
  • 【实例简介】本文详细介绍了如何在PHP中实现微信支付的退款功能,并提供了订单创建类的完整代码及调用示例。在配置过程中,需确保正确设置相关参数,特别是证书路径应根据项目实际情况进行调整。为了保证系统的安全性,存放证书的目录需要设置为可读权限。值得注意的是,普通支付操作无需证书,但在执行退款操作时必须提供证书。此外,本文还对常见的错误处理和调试技巧进行了说明,帮助开发者快速定位和解决问题。 ... [详细]
  • 本文探讨了在PHP中实现MySQL分页查询功能的优化方法与实际应用。通过详细分析分页查询的常见问题,提出了多种优化策略,包括使用索引、减少查询字段、合理设置缓存等。文章还提供了一个具体的示例,展示了如何通过优化模型加载和分页参数设置,显著提升查询性能和用户体验。 ... [详细]
  • 本文深入探讨了NoSQL数据库的四大主要类型:键值对存储、文档存储、列式存储和图数据库。NoSQL(Not Only SQL)是指一系列非关系型数据库系统,它们不依赖于固定模式的数据存储方式,能够灵活处理大规模、高并发的数据需求。键值对存储适用于简单的数据结构;文档存储支持复杂的数据对象;列式存储优化了大数据量的读写性能;而图数据库则擅长处理复杂的关系网络。每种类型的NoSQL数据库都有其独特的优势和应用场景,本文将详细分析它们的特点及应用实例。 ... [详细]
  • 在PHP中实现腾讯云接口签名,以完成人脸核身功能的对接与签名配置时,需要注意将文档中的POST请求改为GET请求。具体步骤包括:使用你的`secretKey`生成签名字符串`$srcStr`,格式为`GET faceid.tencentcloudapi.com?`,确保参数正确拼接,避免因请求方法错误导致的签名问题。此外,还需关注API的其他参数要求,确保请求的完整性和安全性。 ... [详细]
author-avatar
mjh3804260
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有