鸿蒙NEXT开发案例:数字转中文大小写

ops/2024/11/24 15:23:35/

【引言】

本应用的主要功能是将用户输入的数字转换为中文的小写、大写及大写金额形式。用户可以在输入框中输入任意数字,点击“示例”按钮可以快速填充预设的数字,点击“清空”按钮则会清除当前输入。转换结果显示在下方的结果区域,每个结果旁边都有一个“复制”按钮,方便用户将结果复制到剪贴板。

【环境准备】

• 操作系统:Windows 10

• 开发工具:DevEco Studio NEXT Beta1 Build Version: 5.0.3.806

• 目标设备:华为Mate60 Pro

• 开发语言:ArkTS

• 框架:ArkUI

• API版本:API 12

• 三方库:chinese-number-format(数字转中文)、chinese-finance-number(将数字转换成财务用的中文大写数字)

ohpm install @nutpi/chinese-finance-number
ohpm install @nutpi/chinese-number-format

【功能实现】

• 输入监听:通过 @Watch 装饰器监听输入框的变化,一旦输入发生变化,即调用 inputChanged 方法更新转换结果。

• 转换逻辑:利用 @nutpi/chinese-number-format 和 @nutpi/chinese-finance-number 库提供的方法完成数字到中文的各种转换。

• 复制功能:使用 pasteboard 模块将结果显示的中文文本复制到剪贴板,通过 promptAction.showToast 提示用户复制成功。

【完整代码】

// 导入必要的模块
import { promptAction } from '@kit.ArkUI'; // 用于显示提示信息
import { pasteboard } from '@kit.BasicServicesKit'; // 用于处理剪贴板操作
import { toChineseNumber } from '@nutpi/chinese-finance-number'; // 将数字转换为中文大写金额
import {toChineseWithUnits, // 将数字转换为带单位的中文toUpperCase, // 将中文小写转换为大写
} from '@nutpi/chinese-number-format';@Entry // 标记此组件为入口点
@Component // 定义一个组件
struct NumberToChineseConverter {@State private exampleNumber: number = 88.8; // 示例数字@State private textColor: string = "#2e2e2e"; // 文本颜色@State private lineColor: string = "#d5d5d5"; // 分割线颜色@State private basePadding: number = 30; // 基础内边距@State private chineseLowercase: string = ""; // 转换后的小写中文@State private chineseUppercase: string = ""; // 转换后的中文大写@State private chineseUppercaseAmount: string = ""; // 转换后的中文大写金额@State @Watch('inputChanged') private inputText: string = ""; // 监听输入文本变化// 当输入文本改变时触发的方法inputChanged() {this.chineseLowercase = toChineseWithUnits(Number(this.inputText), 'zh-CN'); // 转换为小写中文并带上单位this.chineseUppercase = toUpperCase(this.chineseLowercase, 'zh-CN'); // 将小写中文转换为大写this.chineseUppercaseAmount = toChineseNumber(Number(this.inputText)); // 转换为大写金额}// 复制文本到剪贴板的方法private copyToClipboard(text: string): void {const pasteboardData = pasteboard.createData(pasteboard.MIMETYPE_TEXT_PLAIN, text); // 创建剪贴板数据const systemPasteboard = pasteboard.getSystemPasteboard(); // 获取系统剪贴板systemPasteboard.setData(pasteboardData); // 设置剪贴板数据promptAction.showToast({ message: '已复制' }); // 显示复制成功的提示}// 构建用户界面的方法build() {Column() { // 主列容器// 页面标题Text('数字转中文大小写').fontColor(this.textColor) // 设置字体颜色.fontSize(18) // 设置字体大小.width('100%') // 设置宽度.height(50) // 设置高度.textAlign(TextAlign.Center) // 文本居中对齐.backgroundColor(Color.White) // 设置背景颜色.shadow({ // 添加阴影效果radius: 2, // 阴影半径color: this.lineColor, // 阴影颜色offsetX: 0, // X轴偏移量offsetY: 5 // Y轴偏移量});Scroll() { // 滚动视图Column() { // 内部列容器// 工具介绍部分Column() {Text('工具介绍').fontSize(20).fontWeight(600).fontColor(this.textColor); // 设置介绍文字样式Text('将数字转换为中文格式,适用于票据填写、合同文书、财务报表等多种场景。支持从最小单位“分”到最大单位“千兆”的数字转换。').textAlign(TextAlign.JUSTIFY).fontSize(18).fontColor(this.textColor).margin({ top: `${this.basePadding / 2}lpx` }); // 设置介绍详情文字样式}.alignItems(HorizontalAlign.Start) // 对齐方式.width('650lpx') // 设置宽度.padding(`${this.basePadding}lpx`) // 设置内边距.margin({ top: `${this.basePadding}lpx` }) // 设置外边距.borderRadius(10) // 设置圆角.backgroundColor(Color.White) // 设置背景颜色.shadow({ // 添加阴影效果radius: 10, // 阴影半径color: this.lineColor, // 阴影颜色offsetX: 0, // X轴偏移量offsetY: 0 // Y轴偏移量});// 输入区Column() {Row() { // 行容器Text('示例').fontColor("#5871ce") // 设置字体颜色.fontSize(18) // 设置字体大小.padding(`${this.basePadding / 2}lpx`) // 设置内边距.backgroundColor("#f2f1fd") // 设置背景颜色.borderRadius(5) // 设置圆角.clickEffect({ level: ClickEffectLevel.LIGHT, scale: 0.8 }) // 设置点击效果.onClick(() => { // 点击事件this.inputText = `${this.exampleNumber}`; // 设置输入框文本为示例数字});Blank(); // 占位符Text('清空').fontColor("#e48742") // 设置字体颜色.fontSize(18) // 设置字体大小.padding(`${this.basePadding / 2}lpx`) // 设置内边距.clickEffect({ level: ClickEffectLevel.LIGHT, scale: 0.8 }) // 设置点击效果.backgroundColor("#ffefe6") // 设置背景颜色.borderRadius(5) // 设置圆角.onClick(() => { // 点击事件this.inputText = ""; // 清空输入框});}.height(45) // 设置高度.justifyContent(FlexAlign.SpaceBetween) // 子元素水平分布方式.width('100%'); // 设置宽度Divider().margin({ top: 5, bottom: 5 }); // 分割线TextInput({ text: $$this.inputText, placeholder: `请输入数字,例如:${this.exampleNumber}` }) // 输入框.width('100%') // 设置宽度.fontSize(18) // 设置字体大小.caretColor(this.textColor) // 设置光标颜色.fontColor(this.textColor) // 设置字体颜色.margin({ top: `${this.basePadding}lpx` }) // 设置外边距.padding(0) // 设置内边距.backgroundColor(Color.Transparent) // 设置背景颜色.borderRadius(0) // 设置圆角.type(InputType.NUMBER_DECIMAL); // 设置输入类型为数字}.alignItems(HorizontalAlign.Start) // 对齐方式.width('650lpx') // 设置宽度.padding(`${this.basePadding}lpx`) // 设置内边距.margin({ top: `${this.basePadding}lpx` }) // 设置外边距.borderRadius(10) // 设置圆角.backgroundColor(Color.White) // 设置背景颜色.shadow({ // 添加阴影效果radius: 10, // 阴影半径color: this.lineColor, // 阴影颜色offsetX: 0, // X轴偏移量offsetY: 0 // Y轴偏移量});// 结果区Column() {Row() {Text(`小写:${this.chineseLowercase}`).fontColor(this.textColor).fontSize(18).layoutWeight(1); // 显示小写结果Text('复制').fontColor(Color.White) // 设置字体颜色.fontSize(18) // 设置字体大小.padding(`${this.basePadding / 2}lpx`) // 设置内边距.backgroundColor("#0052d9") // 设置背景颜色.borderRadius(5) // 设置圆角.clickEffect({ level: ClickEffectLevel.LIGHT, scale: 0.8 }) // 设置点击效果.onClick(() => { // 点击事件this.copyToClipboard(this.chineseLowercase); // 复制小写结果到剪贴板});}.constraintSize({ minHeight: 45 }) // 最小高度.justifyContent(FlexAlign.SpaceBetween) // 子元素水平分布方式.width('100%'); // 设置宽度Divider().margin({ top: 5, bottom: 5 }); // 分割线Row() {Text(`大写:${this.chineseUppercase}`).fontColor(this.textColor).fontSize(18).layoutWeight(1); // 显示大写结果Text('复制').fontColor(Color.White) // 设置字体颜色.fontSize(18) // 设置字体大小.padding(`${this.basePadding / 2}lpx`) // 设置内边距.backgroundColor("#0052d9") // 设置背景颜色.borderRadius(5) // 设置圆角.clickEffect({ level: ClickEffectLevel.LIGHT, scale: 0.8 }) // 设置点击效果.onClick(() => { // 点击事件this.copyToClipboard(this.chineseUppercase); // 复制大写结果到剪贴板});}.constraintSize({ minHeight: 45 }) // 最小高度.justifyContent(FlexAlign.SpaceBetween) // 子元素水平分布方式.width('100%'); // 设置宽度Divider().margin({ top: 5, bottom: 5 }); // 分割线Row() {Text(`大写金额:${this.chineseUppercaseAmount}`).fontColor(this.textColor).fontSize(18).layoutWeight(1); // 显示大写金额结果Text('复制').fontColor(Color.White) // 设置字体颜色.fontSize(18) // 设置字体大小.padding(`${this.basePadding / 2}lpx`) // 设置内边距.backgroundColor("#0052d9") // 设置背景颜色.borderRadius(5) // 设置圆角.clickEffect({ level: ClickEffectLevel.LIGHT, scale: 0.8 }) // 设置点击效果.onClick(() => { // 点击事件this.copyToClipboard(this.chineseUppercaseAmount); // 复制大写金额结果到剪贴板});}.constraintSize({ minHeight: 45 }) // 最小高度.justifyContent(FlexAlign.SpaceBetween) // 子元素水平分布方式.width('100%'); // 设置宽度}.alignItems(HorizontalAlign.Start) // 对齐方式.width('650lpx') // 设置宽度.padding(`${this.basePadding}lpx`) // 设置内边距.margin({ top: `${this.basePadding}lpx` }) // 设置外边距.borderRadius(10) // 设置圆角.backgroundColor(Color.White) // 设置背景颜色.shadow({ // 添加阴影效果radius: 10, // 阴影半径color: this.lineColor, // 阴影颜色offsetX: 0, // X轴偏移量offsetY: 0 // Y轴偏移量});}}.scrollBar(BarState.Off).clip(false); // 关闭滚动条,不允许裁剪}.height('100%') // 设置高度.width('100%') // 设置宽度.backgroundColor("#f4f8fb"); // 设置页面背景颜色}
}


http://www.ppmy.cn/ops/136326.html

相关文章

Android mk/bp构建工具介绍

零. 前言 由于Bluedroid的介绍文档有限,以及对Android的一些基本的知识需要了(Android 四大组件/AIDL/Framework/Binder机制/JNI/HIDL等),加上需要掌握的语言包括Java/C/C等,加上网络上其实没有一个完整的介绍Bluedroid系列的文档&#xff0…

SpringBoot整合RabbitMQ应用

本文主要介绍SpringBoot中如何使用RabbitMQ,相关概念及基础使用参考RabbitMQ简单使用 常用配置及方法 展示rabbitmq各个模式在springboot中如何使用之前,先介绍rabbitmq在springboot中的一些常用配置及方法: 注册队列 //使用配置类以bean…

国外云计算服务器租用攻略

国外云计算服务器租用需综合考虑服务商信誉、性能配置、价格性价比、合规性与法律风险、技术支持等因素。首先明确业务需求,选择正规、技术实力强的服务商,并考虑地理位置以优化访问速度。其次,根据需求选择合适的CPU、内存、存储和带宽配置&…

【C++入门(一)】半小时入门C++开发(深入理解new+List+范围for+可变参数)

目录 一.深入理解new 使用格式 二.List列表 定义一个列表 迭代器 添加元素 删除元素 排序 反转序列 三.范围for 四.可变参数 std::initializer_list 可变参数模板(variadic template) 一.深入理解new 类似于C语言中的malloc、calloc和reallo…

局域网协同办公软件,2024安全的协同办公软件推荐

在2024年,随着数字化转型的深入和远程工作需求的增加,协同办公软件已成为企业提升工作效率、优化沟通流程的重要工具。 以下是一些值得推荐的安全的协同办公软件: 钉钉 功能全面:钉钉是一款综合性极强的企业级协同软件&#xff…

Bugku CTF_Web——my-first-sqli

Bugku CTF_Web——my-first-sqli 进入靶场 随便输一个看看 点login没有任何回显 方法一: 上bp抓包 放到repeter测试 试试万能密码(靶机过期了重新开了个靶机) admin or 11--shellmates{SQLi_goeS_BrrRrRR}方法二: 拿包直接梭…

python之开发笔记

1、图标插件pyecharts pyecharts - A Python Echarts Plotting Library built with love. Document --javascripttypescriptshellbashsqljsonhtmlcssccppjavarubypythongorustmarkdown #导包 from pyecharts.charts import Line from pyecharts.options import TitleOpts,L…

1000:入门测试题目(http://ybt.ssoier.cn:8088/problem_show.php?pid=1000)

时间限制: 1000 ms 内存限制: 32768 KB 【题目描述】 求两个整数的和。 【输入】 一行&#xff0c;两个用空格隔开的整数。 【输出】 两个整数的和。 【输入样例】 2 3 【输出样例】 5 提交 代码 #include<bits/stdc.h> using namespace std; int a,b; in…