我想显示PDF的页码。当前页面保存在angular.module('myApp',[])
.filter('zipcode', function () {
return function (input) {
if (!input) {
return input;
}
if (input.toString().length === 9) {
return input.toString().slice(0, 5) + "-" + input.toString().slice(5);
} else if (input.toString().length === 5) {
return input.toString();
} else {
return input;
}
};
});
中。我创建了一个像<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="myApp">
<p>5-digit zip code: {{ 981222735 | zipcode }} </p>
<p>9-digit zip code: {{ 98122 | zipcode }} </p>
</div>
这样的标签。我尝试使用Int currentpage;
但是Eclipse要求我更改Label pagenumber = new Label();
中的currentPage。我认为做我想做的事情真的很容易,但我对JavaFX很新。对不起,这是一个简单的问题。
由于
答案 0 :(得分:2)
真的很容易。
我编写了解决方案,也许它对像JavaFX这样的新人很有帮助。
pagenumber.setText("" +currentPage);
或一般
Label.setText("" +intValue);
答案 1 :(得分:1)
试试这个
pagenumber.setText(Integer.toString(currentPage));