显示0.000该怎么编程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示0.000该怎么编程相关的知识,希望对你有一定的参考价值。

参考技术A 如下:
引入import java.text.DecimalFormat;
DecimalFormat df = new DecimalFormat("0.000"); //可以显示小数点后5位。
String s = df.format(0.0146*4.18); //输出s=0.061。
参考技术B 转换成整型试试 参考技术C 这问题问的。。。就是浮点位数吗

运行此脚本时出现错误代码 401,我该怎么办?

【中文标题】运行此脚本时出现错误代码 401,我该怎么办?【英文标题】:I get the Error code 401 when I run this script, what can I do? 【发布时间】:2018-03-20 14:43:08 【问题描述】:

我是编程新手。 我有一个通过蓝牙连接到应用程序的传感器。应用程序将数据发送到云服务。我从云服务中获得了一个链接,其中包含 json 格式的数据。现在我希望这些数据显示在我的网站上,但它的跨域和我所做的任何事情都会显示 401(未经授权)。

<html>
    	<head>
    		<title>Sensor</title>
    		<script src="jquery-3.2.1.min.js"></script>
    	</head>
    		<body>
    	  <h1>Sensor</h1>
    		<button onclick="myFunctionPost()">Start</button>
    		<div id="result" style="color:red"></div>
    		<script>
    			function myFunctionPost() 
    				var getJSON = function(url) 
    					return new Promise(function(resolve, reject) 
    						var xhr = new XMLHttpRequest();
    						xhr.open('get', url, true);
    						xhr.responseType = 'json';
    						xhr.onload = function() 
    							var status = xhr.status;
    							if (status == 200) 
    								resolve(xhr.response);
    							 else 
    								reject(status);
    							
    						;
    						xhr.send();
    					);
    				;		getJSON('https://thetablewheremydatais$format=json').then(function(data) 
    				alert('Your Json result is:  ' + data.result); //you can comment this, i used it to debug

    				result.innerText = data.result; //display the result in an HTML element
    				, function(status)  //error detection....
    				alert('Something went wrong.');
    				);
    			
    		</script>	
    		</body>
    </html>

【问题讨论】:

401 表示您必须进行身份验证。 我知道但我不知道怎么做,我用 client.setRequestHeader("Authorization", "Basic" + btoa("username:password")); 您提到的是基本身份验证,但可能不是服务器所期望的? ***.com/a/6120260/8744798 这对我有帮助! 【参考方案1】:

在使用 xhr.send() 调用服务器之前,你有没有试过这行代码

xhr.withCredentials = true;

【讨论】:

不走运 @AleksandarK。抱歉,这是我知道的唯一选择,希望其他人仍有解决方案:/

以上是关于显示0.000该怎么编程的主要内容,如果未能解决你的问题,请参考以下文章

如何编程显示LRC歌词?

VBA编程中MsgBox函数怎么用

VC6.0编程,新建了一个对话框,怎么在这个对话框里添加文字?

java 要输出格子图形该怎么编程 +---+---+ +---+---+

VBA编程中MsgBox函数怎么用

编程题目:随机产生1个整数(整数的范围为0-100),怎么编写?