java 数字宽度对齐 2017年8月17日 | Leave a comment 问题: String ret = "[" + (isBuy ? "买" : "卖") + "] " + object + " " + quantity+ " * " + priceCurrency + " " + price ; 1 String ret = "[" + (isBuy ? "买" : "卖") + "] " + object + " " + quantity+ " * " + priceCurrency + " " + price ; 如果有多条ret pr… Read More
Java BigDecimal java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result. 2017年8月15日 | Leave a comment 问题: java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result. 1 java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result. &nbs… Read More
iOS 播放wav 最简单的方式 2017年7月29日 | Leave a comment 问题: iOS 播放wav 最简单的方式 解决: 不能播放过长文件 [crayon-6745e7… Read More
iOS AVAudioPlayer Error Domain=NSOSStatusErrorDomain Code=2003334207 “(null)” 2017年7月29日 | Leave a comment 问题: func playWav(_ wavName : String){ let wavUrl = Bundle.main.url(forResource: wavName, withExtension: nil)! do{ try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback) try AVAudioSession.sharedInstance().setActive(true) let player = try AVAudioPlayer(contentsOf: wavUrl,fileTypeHint:"wav") //error throw player.prepareToPlay() player.play() }catch{ debugPrint(error) } } 123456789101112 func playWav(_ wavName : String){ let wavUrl = Bundle.main.url(forResource: wavName, withExtension: nil)! do{ try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback) try AVAudioSession.sharedInstance().setActive(true) let player = try AVAudioPlayer(contentsOf: wavUrl,fileTypeHint:"wav") //error throw player.prepareToPlay() player.play() }catch{ debugPrint(error) } } 解决: 改用 AVAu… Read More
ios 如何显示类似文字copy & 粘贴那样的 上下文菜单 2017年7月28日 | Leave a comment 问题: ios 如何显示类似文字copy & 粘贴那样的 上下文菜单 解决:  … Read More
PHP PDO sqlite: Unable to open database 2017年7月25日 | Leave a comment 问题: 同样的代码开发环境正常,部署到服务器就不行了 解决: 除数据库文件外 目录也需要写权限,最好把file… Read More