Java tutorial
//package com.java2s; /* * Copyright (c) 2014 - 2015 Ngewi Fet <ngewif@gmail.com> * Copyright (c) 2014 Yongxin Wang <fefe.wyx@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.math.BigDecimal; import java.text.NumberFormat; public class Main { /** * Format the amount in template transaction splits. * <p>GnuCash desktop always formats with a locale dependent format, and that varies per user.<br> * So we will use the device locale here and hope that the user has the same locale on the desktop GnuCash</p> * @param amount Amount to be formatted * @return String representation of amount */ public static String formatTemplateSplitAmount(BigDecimal amount) { //TODO: If we ever implement an application-specific locale setting, use it here as well return NumberFormat.getNumberInstance().format(amount); } }