小编Ham*_*nis的帖子

Whatsapp html调用链接

有没有办法在我的网站上添加一个链接,说"立即呼叫",当它被按下时,用户可以从他们的应用程序中调用.

任何帮助都会非常有帮助.谢谢

html android call whatsapp

7
推荐指数
1
解决办法
5万
查看次数

如何增加装配图形中的文字大小?

这是我的代码。

.model small
.stack
.data

.code

;setting video mode
mov ah,0
mov al,12h
int 10h


;setting cursor position
mov ah,02h  
mov dh,10    ;row 
mov dl,40     ;column
int 10h

mov ah,09h
mov bl,0eh   ;colour
mov cx,1      ;no.of times
mov al,'B'      ;print B
int 10h   

 mov ah,4ch
int 21h

end
Run Code Online (Sandbox Code Playgroud)

给定代码的输出是

给定代码的输出

您可以在视频模式为 12h 的情况下在显示屏上看到字符大小。我想知道增加字符大小的功能代码和参数是什么。

x86 assembly masm dosbox

5
推荐指数
1
解决办法
5379
查看次数

在 Jhipster 中添加应用程序属性

我正在使用 jhipster 微服务应用程序进行开发。基于用于添加特定于应用程序的 jhipster 文档在这里: application-dev.ymlApplicationProperties.java

我通过添加这个来做到这一点

application:
      mycom:
        sgADIpAddress: 172.x.x.xxx    
Run Code Online (Sandbox Code Playgroud)

这是我的 applicationconfig 类

package com.mbb.ias.config;

 import   org.springframework.boot.context.properties.ConfigurationProperties;



  /**
    * Properties specific to JHipster.
     *
    * <p>
    *     Properties are configured in the application.yml file.
    * </p>
    */
   @ConfigurationProperties(prefix = "application",  ignoreUnknownFields     = false)
public class ApplicationProperties {

private final Mycom mycom= new Mycom();



public Mycom getMycom () {
    return mycom;
}



public static class Mycom {
    String sgADIpAddress ="";

    public String getSgADIpAddress() {
        return sgADIpAddress;
    }

    public …
Run Code Online (Sandbox Code Playgroud)

java spring spring-boot jhipster

5
推荐指数
2
解决办法
3098
查看次数

在汇编中生成随机数

我是装配新手,我在生成随机数时遇到问题.

我的代码很简单:它在0-25范围内生成100个数字并将它们存储在一个数组中.

我遇到的问题是,当我在emu8086汇编程序上运行con时,它成功运行并生成100个随机数,这些数字存储在数组中.但是当我在它上面运行时masm611,它会每4个周期产生一个新的随机数.这意味着数组中的值对于4个值是连续相同的数字,然后存储下一个随机值.

这是我的代码:

.model small
.stack 100h
.data

range db 25
i db 0                  ;iterator

arr db 15 dup(0)        ; an array

.code
   mov ax,@data
   mov ds,ax

   mov bx,offset arr    ;getting the adress of the arr in bx
    L1:

    mov ah,2ch      
    int 21h

    mov ah,0  
    mov al,dl            ;using dl by seeing  2ch details
    div range            ; so the number is in range


    mov [bx],ah          ;ah has remainder as using 8 bits div and …
Run Code Online (Sandbox Code Playgroud)

random x86 assembly masm emu8086

4
推荐指数
1
解决办法
7700
查看次数

标签 统计

assembly ×2

masm ×2

x86 ×2

android ×1

call ×1

dosbox ×1

emu8086 ×1

html ×1

java ×1

jhipster ×1

random ×1

spring ×1

spring-boot ×1

whatsapp ×1